fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int mon;
  6. int day;
  7.  
  8. printf("何月ですか?");
  9. scanf("%d",&mon);
  10. printf("何日ですか?");
  11. scanf("%d",&day);
  12.  
  13. switch( mon ){
  14. case 3:
  15. if(21 <= day <= 30){
  16. printf("おひつじ座です。");
  17. }else if(1 <= day <= 20){
  18. printf("うお座です。");
  19. }
  20. }
  21. }
  22.  
Success #stdin #stdout 0s 5316KB
stdin
3
11
stdout
何月ですか?何日ですか?おひつじ座です。