Assignemnt #80
Code
/// Name: Connor Siri
/// Period: 7
/// Program Name: CountingFor
/// File Name: CountingFor.java
/// Date Finished: 11/30/2015
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 increases and eventually terminates at the correct time
{ // the program wont run without int n=1
System.out.println(n + ". " + message );
}
}
}
Picture of the output