Advertisement
Josif_tepe

Untitled

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