I am creating a java program that allow user to enter military time format and count the difference between both time. How do I code to prompt for user to enter the input data again if he enter the wrong format(I would need to use a Method for this).Would be great if someone is willing to help me. Many thanks :D
Below is my source code so far
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("Please enter the first time in military format: ");
String ftime = in.nextLine ();
int fnum = Integer.parseInt(ftime);
System.out.println("Please enter the second time in military format: ");
int stime = in.nextInt();
if (stime > fnum ){
System.out.println("The number of hours is :");
System.out.println(stime / 100 - fnum / 100);
int H1 = (fnum/ 100) * 60 + (fnum % 100);
int H2 = (stime / 100) * 60 + (stime % 100);
int min = H2 - H1;
System.out.println("The number of minutes is :");
System.out.println(min);
} else if (fnum > stime ){
System.out.println ("The number of hours and is :");
System.out.println(fnum / 100 - stime / 100);
int H1 = (fnum/ 100) * 60 + (fnum % 100);
int H2 = (stime / 100) * 60 + (stime % 100);
int min = H1 - H2;
System.out.println("The number of minutes is :");
System.out.println(min);
}
}
}
"Require help on my Java Program?"to"Input validation method". Your question title should be useful to us and should summarize your problem in a succinct way similar to a newspaper headline. Your prior question title told us nothing that we already didn't know -- you wouldn't be posting here if you didn't require help. Please in the future try to use more informative question headings. Next you should edit your original post and ask a specific and answerable question. What exactly confuses you? Please help us help you! – Hovercraft Full Of Eels Feb 24 at 16:14