在C语言中,可以用if...else编写出一个选择游戏,选择竞猜商品价格。
如下:
#include <stdio.h>
int main(){
int price=97,gue;
printf("please enter a number:\n");
scanf("%d",&gue);
if(gue<price){
printf("you guess the number is small\n");
}
if(gue>price){
printf("you guess the number is big\n");
}else{
printf("you haved guessed it\n");
}
return 0;
}
执行如图: