给我生成一段通过C语言基本语法写的一个游戏商店
时间: 2023-03-29 12:04:00 浏览: 147
好的,以下是一段通过C语言基本语法写的一个游戏商店:
#include <stdio.h>
int main() {
int choice;
float price;
printf("欢迎来到游戏商店!\n");
printf("请选择您要购买的游戏:\n");
printf("1. 《英雄联盟》\n");
printf("2. 《绝地求生》\n");
printf("3. 《守望先锋》\n");
printf("4. 《王者荣耀》\n");
printf("5. 《和平精英》\n");
scanf("%d", &choice);
switch(choice) {
case 1:
price = 99.9;
printf("您选择了《英雄联盟》,价格为%.2f元。\n", price);
break;
case 2:
price = 59.9;
printf("您选择了《绝地求生》,价格为%.2f元。\n", price);
break;
case 3:
price = 69.9;
printf("您选择了《守望先锋》,价格为%.2f元。\n", price);
break;
case 4:
price = 49.9;
printf("您选择了《王者荣耀》,价格为%.2f元。\n", price);
break;
case 5:
price = 39.9;
printf("您选择了《和平精英》,价格为%.2f元。\n", price);
break;
default:
printf("输入有误,请重新选择。\n");
break;
}
return ;
}
阅读全文