Assignemnt #78
Code
/// Name: Holden Ganch
/// Period: 7
/// Program Name: seventy seventh Program
/// File Name: Baby.java
/// Date Finished: 2/11/2016
import java.util.Scanner;
public class CountingFor
{
public static void main( String[] args )
{
Scanner keyboard = new Scanner(System.in);
System.out.println("Type in a message, and I'll display it five times.");
System.out.print("Message: " );
String message = keyboard.nextLine();
for ( int n = 2 ; n <= 20; n = n+2) // n+1 makes it so the number continues to grow and until its cancled at the correct time
{ // the program wont run without int n=1
System.out.println(n + ". " + message );
}
}
}
Picture of the output