Results 1 to 3 of 3
Thread: Starting out
- 09-24-2012, 02:30 PM #1
Member
- Join Date
- Sep 2012
- Posts
- 1
- Rep Power
- 0
Starting out
So, I just started programming with Java and maybe I'm getting ahead of myself but still. My question is this: how do I recall an earlier line? This is what I have as my code so far:
import java.util.Scanner;
public class SimpleTest
{
public static void main(String [] a)
{
Scanner kbd = new Scanner(System.in);
System.out.println("This program is a simple test.");
System.out.println("Please imput your name:");
String name = kbd.nextLine ();
System.out.println("Hello " +name+ " Are you ready to take the test?");
String ans1 = kbd.nextLine ();
if (ans1.equals ("Yes"))
System.out.println("good, lets begin.");
else if (ans1.equals ("No"))
System.out.println("Ok, please come back when you are ready.");
else if (ans1.equals ("yes"))
System.out.println("good, lets begin.");
else if (ans1.equals ("no"))
System.out.println("Ok, please come back when you are ready.");
else
System.out.println("I'm sorry, " +ans1+ " is not a recognizable command. Please answer with either Yes or No");
}
}
What I want to do, specifically, is to have the last line redirect back to the "are you ready to take the test?" line.
- 09-24-2012, 03:06 PM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: Starting out
Please use [code] tags [/code] when posting code.
You'd normally use a loop:
Java Code:do prompt user get input from user while input invalid
Please do not ask for code as refusal often offends.
- 09-24-2012, 04:03 PM #3
Re: Starting out
More about that here: Control Flow Statements (The Java™ Tutorials > Learning the Java Language > Language Basics)
dbWhy do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
Need help starting a program.
By cagipple in forum New To JavaReplies: 2Last Post: 09-19-2011, 07:35 PM -
Starting Out...
By maknib in forum Java GamingReplies: 1Last Post: 11-11-2010, 08:15 PM -
Help with starting program please
By SF163 in forum New To JavaReplies: 5Last Post: 11-07-2009, 03:33 PM -
Starting with Databasing
By DavidG24 in forum JDBCReplies: 3Last Post: 09-13-2009, 08:51 AM -
just starting
By specbailey in forum New To JavaReplies: 23Last Post: 08-13-2007, 11:25 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks