fauzanabid

do_while

Nov 21st, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class do_while
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.     int a = 0;
  6.    
  7.     do
  8.     {
  9.         System.out.println("nilai a : " +a);
  10.        
  11.         a++;
  12.     }
  13.         while (a < 5);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment