Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int n;
  6.     int brojac = 0;
  7.     int trenutnibroj = 0;
  8.  
  9.  
  10.     while(brojac<100)
  11.     {
  12.         printf("%d \n",trenutnibroj);
  13.         brojac++;
  14.         trenutnibroj = trenutnibroj + 3;
  15.  
  16.  
  17.     }
  18.  
  19.  
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement