描述
输入某个整数,如果输入的整数在1-9范围内,则输出相对应的单词,否则输出’out’
这题既要有c++水平,也要有点英语水分,像这种题可以选择用switch语句来解决,然后把英文一个一个判断,再输出;
下面出示代码:
#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
cin>>a;
switch(a){
case 1:cout<<"one";break;
case 2:cout<<"two";break;
case 3:cout<<"three";break;
case 4:cout<<"four";break;
case 5:cout<<"five";break;
case 6:cout<<"six";break;
case 7:cout<<"seven";break;
case 8:cout<<"eight";break;
case 9:cout<<"nine";break;
default:cout<<"out";
}
return 0;
}