博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验2-2-9 计算火车运行时间
阅读量:5217 次
发布时间:2019-06-14

本文共 754 字,大约阅读时间需要 2 分钟。

package com.company;import java.sql.Time;import java.text.DecimalFormat;import java.util.Calendar;import java.util.Date;import java.util.Scanner;public class Main {    public static void main(String[] args) {    // write your code here        Scanner sc=new Scanner(System.in);        int start=sc.nextInt();        int end=sc.nextInt();        int a=start/100;        int b=start%100;        int c=end/100;        int d=end%100;        int x,y;        DecimalFormat df=new DecimalFormat("00");        if(b<=d){            x=d-b;            y=c-a;        }else{            x=d+60-b;            y=c-a-1;        }        System.out.println(df.format(y)+":"+df.format(x));    }}

缺少分析,找方法找半天,还不如自己组装,此题百度过。

转载于:https://www.cnblogs.com/zhuzehua/p/9672954.html

你可能感兴趣的文章
java的byte[]与String相互转换
查看>>
layui父页面执行子页面方法
查看>>
如何破解域管理员密码
查看>>
Windows Server 2008 R2忘记管理员密码后的解决方法
查看>>
IE11兼容IE8的设置
查看>>
windows server 2008 R2 怎么集成USB3.0驱动
查看>>
Foxmail:导入联系人
查看>>
JavaScript AJAX原生写法
查看>>
vue:axios二次封装,接口统一存放
查看>>
Js三大特性--封装、继承以及多态
查看>>
2019年8月2日07:51:10 马上要撤
查看>>
vue中router与route的区别
查看>>
js 时间对象方法
查看>>
网络请求返回HTTP状态码(404,400,500)
查看>>
Spring的JdbcTemplate、NamedParameterJdbcTemplate、SimpleJdbcTemplate
查看>>
Mac下使用crontab来实现定时任务
查看>>
303. Range Sum Query - Immutable
查看>>
图片加载失败显示默认图片占位符
查看>>
2018 ZJCPC
查看>>
【★】浅谈计算机与随机数
查看>>