filipparodriguezz

Untitled

Dec 2nd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.         Scanner keyboard = new Scanner(System.in);
  7.  
  8.         String message = "Mr. Mitchell is cool.";
  9.  
  10.  
  11.         for  ( int n = 1;n <= 10;n++) {
  12.             System.out.println(n + ". " + message);
  13.         }
  14.  
  15.  
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment