Advertisement
panjimp

Untitled

Nov 19th, 2017
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. main()
  4.  
  5. { int I, N; N = 2;
  6.  
  7. for(I = 1; I<5 ; I++) {
  8.  
  9. N= N * 2 ;
  10.  
  11. if (N>16) continue;
  12.  
  13. N = N + 1 ; }
  14.  
  15. Printf("Nilai N adalah %d",N);
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement