Advertisement
Josif_tepe

Untitled

May 7th, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5.     int brojac = 1;
  6.     while(brojac <= 10) {
  7.         printf("%d ", brojac);
  8.         brojac += 1;
  9.     }
  10.    
  11.    
  12.     return 0;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement