Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
    }

} 

}

share|improve this question
1  
Please formulate your question. A question mark (?) would be a starter for a good question. See also: How to ask questions – moose Feb 24 at 16:04
1  
possible dupe require some help with java – djechlin Feb 24 at 16:08
I have changed your thread title from "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
Hi, Thanks for the feedback, I will take note of this. This is my first time posting question on stackoverflow. – Edwin Zhang Wei Sheng Feb 24 at 16:18
@Edwin: Don't just take note of it, please edit your question and improve your question. You have yet to ask a specific and answerable question. A good rule of thumb is that you should put as much effort into asking a question as you'd like a volunteer to expend answering it. – Hovercraft Full Of Eels Feb 24 at 16:22
show 1 more comment

closed as not a real question by nwinkler, MrSmith42, partlov, Werner Vesterås, towi Feb 25 at 15:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

try something like this

    while (((stime = in.nextInt()) > 2350) && (stime < 0))
         System.err.println("Wrong number, try it again:");
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.