计算火车运行的时间

根据火车的出发时间和到达时间,编写程序计算整个旅途所用的时间。比如G198次列车从青岛站出发时间为16:00,到达北京南站的时间为20:40,则整个旅途所用时间为04:40。输入格式仅一行,包含两个4位的正整数start和end,中间以空格分隔,分别表示火车的出发时间和达到时间。在一行中输出整个旅途所用的时间,格式为“hh:mm”,其中hh表示2位小时数,mm表示2位分钟数。

java显示:

public class time {

    public static void main(String[] args) {
         int start,end;
         int hour,minute;
         Scanner in=new Scanner(System.in);
         start=in.nextInt();
         end=in.nextInt();
         start=start/100*60+start%100;
         end=end/100*60+end%100;
         hour=(end-start)/60;
         minute=(end-start)%60;
         System.out.println(hour+":"+minute);
    }
}

C显示:

#include <stdio.h>
int main(void) {
    int start, end;
    int hour, minute;
    scanf("%d%d", &start, &end);
    start = start / 100 * 60  + start % 100;
    end = end / 100 * 60 + end % 100;
    hour = (end - start) / 60;
    minute = (end - start) % 60;
    printf("%02d:%02d\n", hour, minute);
    return 0;
}
时间: 2024-10-13 08:43:49

计算火车运行的时间的相关文章

Powershell计算脚本运行的时间

在PowerShell中Measure-Command可用来计算powershell脚本或者命令执行所需要的时间. (1)计算命令"get-service"执行所需的时间:输入如下命令 Measure-Command -Expression {get-service} (2)计算powershell脚本执行所需要的时间:输入如下命令: Measure-Command -Expression {powershell d:\hw.ps1} 参考网址:http://technet.micro

js 一个程序运行的时间计算

js 一个程序运行的时间计算 console.time(timeName) console.timeEnd(timeName) MDN 释义 你可以启动一个计时器(timer)来跟踪某一个操作的占用时长.每一个计时器必须拥有唯一的名字,页面中最多能同时运行10,000个计时器. 当以此计时器名字为参数调用 console.timeEnd() 时,浏览器将以毫秒为单位,输出对应计时器所经过的时间 console.time('x') for(var i=0; i<100000; i++){ } co

*分支-12. 计算火车运行时间

1 /* 2 * Main.c 3 * B12-分支-12. 计算火车运行时间 4 * Created on: 2014年6月4日 5 * Author: Boomkeeper 6 * 7 ********测试未通过******* 8 */ 9 #include <stdio.h> 10 #include <stdlib.h> 11 12 int startTime,arrTime; 13 int *p_startTime=&startTime; 14 int *p_arr

[fw]Linux系统使用time计算命令执行的时间

Linux系统使用time计算命令执行的时间 当测试一个程序或比较不同算法时,执行时间是非常重要的,一个好的算法应该是用时最短的.所有类UNIX系统都包含time命令,使用这个命令可以统计时间消耗.例如: [[email protected] ~]# time ls anaconda-ks.cfg install.log install.log.syslog satools text real 0m0.009s user 0m0.002s sys 0m0.007s 输出的信息分别显示了该命令所花

分支-12. 计算火车执行时间(15)

本题要求依据火车的出发时间和达到时间,编敲代码计算整个旅途所用的时间. 输入格式: 输入在一行中给出2个4位正整数,其间以空格分隔,分别表示火车的出发时间和到达时间.每一个时间的格式为2位小时数(00-23)和2位分钟数(00-59),如果出发和到达在同一天内. 输出格式: 在一行输出该旅途所用的时间,格式为"hh:mm",当中hh为2位小时数.mm为2位分钟数. 输入例子: 1201 1530 输出例子: 03:29 import java.util.Scanner; public

怎样计算页面执行的时间?

第一步:建立所有页面的基类 PageBase.cs using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlContro

WIN2008访问设备管理器提示:由于您在远程计算机上运行设备管理器……的解决方案

原博客会员wosiyin反映,使用WIN2008,通过我的电脑右键访问设备管理器时提示:由于您在远程计算机上运行设备管理器,设备管理器在只读模式中运行.要卸载设备或改变设备属性或驱动程序,必须在要进行改动的计算机上运行设备管理器.问题,如下图: 但是通过开始,运行,输入:mmc compmgmt.msc访问则正常: 经过一番百度发现,该问题是由于计算机名过长导致的,解决方法很简单,把计算机名改短一点就正常了! 事实上我很好奇,这计算机名得有多长啊? 原文连接:http://goxia.mayti

3.怎样计算页面执行的时间?

页面执行时间:就是从这页的开始执行一直到这页执行完毕所用的时间. 许多网站的的页尾都会显示一个页面执行时间,下面说说如何实现: 首先在一个网页的开头定义一个变量: dim startime startime=timer() 在显示页面执行时间的地方,这个地方应该是页尾的地方: dim endtime endtime=timer() 页面执行时间:<%=FormatNumber((endtime-startime)*1000,3)%>毫秒 3.怎样计算页面执行的时间?,布布扣,bubuko.co

R语言记录程序运行的时间

f <- function(start_time) { start_time <- as.POSIXct(start_time) dt <- difftime(Sys.time(), start_time, units="secs") # Since you only want the H:M:S, we can ignore the date... # but you have to be careful about time-zone issues format(