fork download
  1. #include <stdio.h>
  2. struct DATE_DATA
  3. {
  4. int yy;
  5. int mm;
  6. int dd;
  7. };
  8.  
  9. int main(void)
  10. {
  11. struct DATE_DATA x [5] =
  12. {
  13. {88, 11, 9},
  14. {60, 4, 1},
  15. {61, 3, 1},
  16. {91, 8, 18},
  17. {87, 9, 19}
  18. };
  19. int i;
  20.  
  21. while (1) {
  22. printf("input 0-4\n");
  23. scanf("%d", &i);
  24. if (i < 0) break;
  25. if (4 < i) continue;
  26. printf("%02d/", x[i].yy);
  27. printf("%02d/", x[i].mm);
  28. printf("%02d\n", x[i].dd);
  29. }
  30.  
  31. return 0;
  32. }
  33.  
Success #stdin #stdout 0.01s 1680KB
stdin
0
4
5
-1
stdout
input 0-4
88/11/09
input 0-4
87/09/19
input 0-4
input 0-4