作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
//作者:tlc
import java.util.Scanner;
public class assignment2 {
public static int t1;
public static int t2;
public static int x;
public static int y1;
public static int m1;
public static int d1;
public static int y2;
public static int m2;
public static int d2;
public static void date1() {
Scanner scanner = new Scanner (System.in);
System.out.println("Please enter the first date \n");
System.out.println ("Please enter the year: ");
y1=scanner.nextInt();
System.out.println("Please enter the month: ");
m1=scanner.nextInt();
System.out.println("Please enter the day: \n");
d1=scanner.nextInt();
}
public static void date2() {
Scanner scanner = new Scanner (System.in);
System.out.println("Please enter the second date \n");
System.out.println ("Please enter the year: ");
y2=scanner.nextInt();
System.out.println("Please enter the month: ");
m2=scanner.nextInt();
System.out.println("Please enter the day: \n");
d2=scanner.nextInt();
}
public static void finaldate() {
x = Math.abs(t1-t2);
}
public static void main(String[] args) {
date1();
if (m1==1 + 3 + 5 + 7 + 8 + 10 + 12){
t1 = ((365*y1)+d1+31);}
else
if (m1==2) {
t1 = ((365*y1)+d1+28);}
else
if (m1==4 + 6 + 9 + 11); {
t1 = ((365*y1)+d1+30);}
date2();
if (m2==1 + 3 + 5 + 7 + 8 + 10 + 12){
t2 = ((365*y2)+d2+31);}
else
if (m2==2) {
t2 = ((365*y2)+d2+28);}
else
if (m2==4 + 6 + 9 + 11); {
t2 = ((365*y2)+d2+30);}
finaldate();
System.out.println("The difference between the two dates is: " + x + " days.");
}
}
如何设置捕获错误输入(例如:不是整数)并让程序显示一条错误消息,然后显示一个返回到程序开头的循环?我已经为此苦苦挣扎了一段时间了。
感谢所有帮助! :)
最佳答案
用 try catch block 包围以捕获 java.util.InputMismatchException,当下一个值与整数正则表达式不匹配时抛出该异常。
如 Scanner API 中所述, nextInt() 方法在这些情况下将抛出此异常。
关于Java,如何为错误输入设置循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7897028/
我是一名优秀的程序员,十分优秀!