Advertisement
Yusufmm

UTS_No_2_Genap

Apr 10th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package uts_semester2;
  2.  
  3. /**
  4.  * @author Yusuf
  5.  * Soal no 2 Genap
  6.  */
  7. public class No_2_Genap {
  8.     public static void main(String[] args) {
  9.    
  10.         for (int i = 0; i < 20; i += 2) {
  11.             System.out.println(i);
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement