#!/usr/bin/env ruby # -*- coding: utf-8 -*- print("時間を測ります\n") time = Time.now.to_f stop = gets.chomp just = Time.now.to_f jikan = just - time printf("タイムは%f秒です\n",jikan)