Advertisement
kamandos

Упр

Jul 10th, 2022
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. char name[13];
  5. char age[10];
  6. char times[60];
  7. scanf("%[^\n]", name);
  8. scanf("\n[^\n]", age);
  9. scanf("\n[^\n]", times);
  10. printf("name:%s age:%s times:%s", name, age, times);
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement