fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int month;
  5.  
  6. scanf("%d",&month);
  7.  
  8. switch(month){
  9. case 1:
  10. printf("元日");
  11. printf("成人の日");
  12. case 2:
  13. printf("建国記念の日");
  14. printf("天皇誕生日");
  15.  
  16. }
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5308KB
stdin
12
stdout
Standard output is empty