到目前为止,这是我的代码,我正在使用目标 c。它很小,但我想做一个默认答案,例如,如果有人输入“我喜欢馅饼”,它会说“我不明白”。
printf("This is a text game! You will be shown what is going on");
printf("\nand it is up to you to decide what to do.");
printf("\n\nThere is a gem on the ground.");
printf("\nWhat do you want to do");
printf("\n>");
char string[256];
fgets(string, 255, stdin);
if (strcmp(string, "pick up gem\n") == 0)
{
printf("Got Gem");
}
else if (strcmp(string, "kick gem\n") == 0){
printf("Gem flew off the road.");
}