fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int c;
  5. while(0){
  6. printf("何月かを入力してください\n");
  7. scanf("%d",&c);
  8. if(c==0)
  9. printf("c=0です。");
  10. else if(0<c&&c<13){
  11. printf("0<c<13です。");
  12. break;
  13. }
  14. else if(c<0||c>13){
  15. printf("c<0またはc>13です。");
  16. }
  17. else
  18. printf("c=13です。");
  19.  
  20.  
  21. }
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5316KB
stdin
5
stdout
Standard output is empty