用c语言编,猜价格游戏,计算机生成一个商品价格,每次猜一个数电脑提示大或小,继续猜直到正确,

用c语言编,猜价格游戏,计算机生成一个商品价格,每次猜一个数电脑提示大或小,继续猜直到正确,,第1张

我刚弄的,我也没调试过不知道行不行

#include<stdio.h>

#include<time.h>

#include<stdlib.h>

void meau()

{

printf("**************************\n")

printf("***1.开始 2.结束 ***\n")

printf("**************************\n")

}

void game()

{

int a = 0,b = 0

int ret=rand() % 100+1

while (1)

{

printf("请猜一个数字\n")

b++

scanf_s("%d", &a)

if (a >ret)

{

printf("衡运猜大咐神梁了\n")

}

else if (a <ret)

{

printf("猜小了瞎哗\n")

}

else

{

printf("猜对了,你一共猜了%d次牛逼\n",b)

break

}

}

}

int main()

{

srand((unsigned)time(NULL))

printf("请选择:\n")

meau()

int i = 0

flag:scanf_s("%d", &i)

switch (i)

{

case 1:

game()

break

case 2:

printf("游戏结束\n")

break

default:

printf("请重新选择\n")

goto flag

break

}

return 0

}

以下是实现从键盘输入某商品单价和数量,求出商品的总价并输出的C语言程序:

#include <stdio.h>

int main() {

float price, total_price

int quantity

printf("请输入商品单价:")

scanf("%f", &price)

printf("请输入商品数量:")

scanf("%d", &quantity)

total_price = price * quantity

printf("商品总价为:%f\n", total_price)

return 0

}

程序中先定义了三个变量,歼锋含price用来存储商品单价,quantity用来存储商品数量,total_price用来存储商品总价。

通过scanf函数从键盘读入商品单价和数量,并将它们分别存储到price和quantity变量中。

然后,通过total_price = price * quantity计算出商品的总价氏笑,并使用printf函数输出结果。

最后,程序通过return 0语句结束。基轮


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12522570.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存