- 分享
2024/1/14 11:45
- 2024-1-14 11:45:44 @
#include <iostream>
using namespace std;
int main(){
int a;
cin>>a;
switch (a) {
case 1:
cout<<"a b c d e f"<<endl;
break;
case 2:
cout<<"c d e f"<<endl;
break;
case 4:
cout<<"e f"<<endl;
break;
default:
cout<<"f"<<endl;
}
return 0;
}
0 条评论
目前还没有评论...