如何判断用户输入的字符串是否为表示判断的yes?求C语言程序
答案:1 悬赏:30 手机版
解决时间 2021-02-11 19:40
- 提问者网友:杀手的诗
- 2021-02-11 00:41
如何判断用户输入的字符串是否为表示判断的yes?求C语言程序
最佳答案
- 五星知识达人网友:我住北渡口
- 2021-02-11 02:11
用: strcmp(huida,"yes")==0 判断 为 yes (大小写区分):
#include
int main(){
char huida[10];
int i=0;
while(1){
printf("%d answer yes or no\n",i++);
scanf(" %s",huida);
if ( strcmp(huida,"yes")==0) printf("answer is yes\n");
else {printf("Your answer is not yes !\n"); break;};
}
return 0;
}
#include
int main(){
char huida[10];
int i=0;
while(1){
printf("%d answer yes or no\n",i++);
scanf(" %s",huida);
if ( strcmp(huida,"yes")==0) printf("answer is yes\n");
else {printf("Your answer is not yes !\n"); break;};
}
return 0;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯