Advertisement
LoFiy0

ITT26_Calculator_Seibel

Feb 23rd, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class Calculator {
  2.  
  3.     public static void main (String[] args){
  4.         for(int i = 1; i < 20; i++){
  5.             System.out.print(i+"+1");
  6.             System.out.print(" = ");
  7.             System.out.print(i+1);
  8.             System.out.print("|||");
  9.         }
  10.     }
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement