#include <iostream>
using namespace std;
int main(int argc, char** argv) {
int month = stoi(argv[1]);
//add code below this line
switch (month){
case 1: cout<<"January";break;
case 2: cout<<"February";break;
case 3: cout<<"March";break;
case 4: cout<<"April";break;
case 5: cout<<"May";break;
case 6: cout<<"June";break;
case 7: cout<<"July";break;
case 8: cout<<"August";break;
case 9: cout<<"September";break;
case 10: cout<<"October";break;
case 11: cout<<"November";break;
case 12: cout<<"December";break;
default:cout << "wrong month";
}
//add code above this line
return 0;
}
c++ switch case使用小案例
最新推荐文章于 2025-02-02 23:08:55 发布