程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> 關於C >> 問題十三:按照氣象劃分法,通常以陽歷3~5月為春季,6~8月為夏季,9~11月為秋季,12月~來年2月為冬季。使用switch結構編寫函

問題十三:按照氣象劃分法,通常以陽歷3~5月為春季,6~8月為夏季,9~11月為秋季,12月~來年2月為冬季。使用switch結構編寫函

編輯:關於C

/***************************************************************
              C語言
  
                                         AUTHOR:liuyongshui
   ***************************************************************/
/*
    問題十三:按照氣象劃分法,通常以陽歷3~5月為春季,
    6~8月為夏季,9~11月為秋季,12月~來年2月為冬季。
    使用switch結構編寫函數根據月份輸出對應的季節。

*/

#include <stdio.h>   

void season(int m);    //原函數season申明

int main()
{
     int month;
     
     printf("請輸入月份:");
     scanf("%d", &month);

     season(month);

     return 0;
}


// 函數的定義
void season(int m)
{
     switch(m)
     {
          case 3:
          case 4:
          case 5:
              printf("您輸入的月份%d在春季\n", m);
              break;
          case 6:
          case 7:
          case 8:
              printf("您輸入的月份%d在夏季\n", m);
              break;
          case 9:
          case 10:
          case 11:
              printf("您輸入的月份%d在秋季\n", m);
              break;
          case 12:
          case 1:
          case 2:
              printf("您輸入的月份%d在冬季\n", m);
              break;
          default:
              printf("您輸入的數字不在0-12月份內!");
     }
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved