Advertisement
Josif_tepe

Untitled

Jun 11th, 2024
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <ctype.h>
  4. #include <math.h>
  5.  
  6.  
  7. int main(int argc, char * argv[]) {
  8.     char niza[2000];
  9.     scanf("%s", niza);
  10.  
  11.     for(int i = 0; i < strlen(niza); i++) {
  12.         printf("%c ", niza[i]);
  13.     }
  14.    
  15. }
  16.  
  17.  
  18. /*
  19. 6
  20. 2 4 5 7 11 23
  21.  
  22. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement