Advertisement
CamiloCastilla

Untitled

Nov 28th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.         for(int x = 10; x < 20; x = x + 1) {
  7.             System.out.print("Mr. Mitchell is cool." );
  8.             System.out.print("\n");
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement