Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.Scanner;
- public class Main {
- public static void main( String[] args )
- {
- Scanner keyboard = new Scanner(System.in);
- System.out.println( "Type in a message, and I'll display it ten times." );
- System.out.print( "Message: " );
- String message = keyboard.nextLine();
- System.out.println("How many times:");
- int times=keyboard.nextInt();
- int n=1;
- while ( n <= times )
- {
- System.out.println( (n*10) + ". " + message );
- n++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement