Advertisement
Yusufmm

UTS_No_2_Ganjil

Apr 10th, 2015
198
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 Ganjil
  6.  */
  7. public class No_2_Ganjil {
  8.  
  9.     public static void main(String[] args) {
  10.  
  11.         for (int i = 1; i < 20; i += 2) {
  12.             System.out.println(i);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement