Advertisement
Igor2909

Untitled

Dec 27th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.     int cont = 0;
  7.     int N = 1;
  8.     int temp;
  9.     while(cont<100)
  10.     {
  11.         temp = N * 2;
  12.         printf("%d\n" ,temp);
  13.         cont ++;
  14.         N++;
  15.        
  16.     }
  17.     system("PAUSE");
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement