Advertisement
Blonk

Untitled

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