java - 如何正确读取军用时差?

标签 java

我正在尝试编写一个程序,其中控制台告诉一个人没有 IF 语句的两个时间之间的差异,即“军事时间”或 24 小时时间。到目前为止,我已经:

import java.util.Scanner;

public class MilTimeDiff {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        System.out.print("Enter the first time: ");
        String time1 = s.next();
        System.out.print("Enter the second time: ");
        String time2 = s.next();
        String tm1 = String.format("%02d", Integer.parseInt(time1));
        String tm2 = String.format("%02d", Integer.parseInt(time2));
        int t1 = Integer.parseInt(tm1);
        int t2 = Integer.parseInt(tm2);
        int difference = t2 - t1;
        while (t1 < t2) {
            String tmDif = Integer.toString(difference);
            System.out.println("The difference between times is " + tmDif.substring(0, 1) + " hours " +
                    tmDif.substring(1) + " minutes.");
            break;
        }
    }

}

但我有两个问题:一:如果我将时间一设为 0800,将时间二设为 1700,那么我得到的是正确的 9 小时。但如果相差 10 小时或以上,则给出 1 小时又很多分钟。我认为使用 String.format 方法会有帮助,但它没有任何作用。

二:我不知道如何处理时间 1 晚于时间 2 的情况。

谢谢!

最佳答案

您可以尝试下面的代码,它将给出军事格式的时差:

public static void main(String[] args) {
    Scanner s = new Scanner(System.in);
    System.out.print("Enter the first time: ");
    String time1 = s.next();
    System.out.print("Enter the second time: ");
    String time2 = s.next();
    String tm1 = String.format("%02d", Integer.parseInt(time1));
    String tm2 = String.format("%02d", Integer.parseInt(time2));

    String hrs1 = time1.substring(0, 2);
    String min1 = time1.substring(2, 4);
    String hrs2 = time2.substring(0, 2);
    String min2 = time2.substring(2, 4);

    // int difference = t2 - t1;
    if (Integer.parseInt(time1) < Integer.parseInt(time2)) {
        int minDiff = Integer.parseInt(min2) - Integer.parseInt(min1);
        int hrsDiff = Integer.parseInt(hrs2) - Integer.parseInt(hrs1);
        if (minDiff < 0) {
            minDiff += 60;
            hrsDiff--;
        }

        System.out.println("The difference between times is " + hrsDiff + " hours " + minDiff + " minutes.");

    } else {
        int minDiff = Integer.parseInt(min1) - Integer.parseInt(min2);
        int hrsDiff = Integer.parseInt(hrs1) - Integer.parseInt(hrs2);
        if (minDiff < 0) {
            minDiff += 60;
            hrsDiff--;
        }

        System.out.println("The difference between times is " + hrsDiff + " hours " + minDiff + " minutes.");

    }

}

关于java - 如何正确读取军用时差?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39313516/

相关文章:

java - 澄清有关编译器的代码评估顺序

java - 为什么Java不强制serialVersionUID

java - Java Web 应用程序中的搜索集成

java - Pdf Reader 使用 java 在控制台中打印

java - 具有状态的 ArrayList 元素

java - 函数调用之外的弹出窗口

java - 使用 Java 或 .NET 库对 ColdFusion 中的 PDF 执行光学字符识别?

java - 无法使用 Java 7u21 启动小程序

java - 从 Servlet 发送 JSon 对象的最佳方式

java - 如何使用 rxJava 发出多重请求