Aminpro

[ECP 1016]Do While loop

Jul 1st, 2012
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. //https://www.facebook.com/AminproPastebin
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(void)
  6. {
  7.     int i=2;
  8.     do{
  9.         printf("%d  ", i);
  10.         i += 2;}
  11.         while(i <=100);
  12.        
  13.        
  14.        
  15.        
  16. getchar();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment