document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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) break;
  12.  
  13. N = N + 1 ; }
  14.  
  15. printf("Nilai N adalah %d",N);
  16.  
  17. }
');