如何修改这段源码?
#include<stdio.h>#include<string.h>
int main(){
char str1[10]="yes",str2[10];
printf("Is -liiqiingy- beatiful?");
printf("your answer is yes or no?");
for(;;){
gets(str2);
if(strcmp(str1,str2)!=0){
printf("You are not a honest children O!");
printf("Please answer again!");
continue;
}
else{
printf("Your answer is very very good!");
break;
}
}
return 0;
}
怎么是错误的,提示找不到程序“”. 这样的格式。请各位看看。