Advertisement
andoraiko

UTS Pemrograman 1 - Looping Angka (Fernando 181021400222)

May 7th, 2020
713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. class loopingangka{
  2.  
  3.     public static void main(String[] argumen){
  4.         for(int i = 0; i <= 50; i += 2  ){
  5.             System.out.print( i + " ");
  6.         }
  7.     }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement