91学习

陪伴你每一天!

商品竞猜游戏(用C知识)

   在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;

}

 执行如图:

 POSji18790284560.png

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。