用c语言编写程序:模拟查询自动饮料售货机中饮料的价格
发布网友
发布时间:2022-05-16 13:08
我来回答
共2个回答
热心网友
时间:2023-08-21 10:44
#include<stdio.h>
#include<conio.h>
main()
{
int i=1;
char getchviewk;
for( i =1;i<=5;i++)
{
printf("[1]可乐 [2]咖啡\n");
printf("[3]果汁 [4]奶茶\n");
printf("[0]退出\n");
if(i==1)getchviewk=getch();
switch(getchviewk)
{
case 48 : i=5;break;
case 49 :printf("可乐3元\n");getchviewk=getch();break;
case 50 :printf("咖啡5元\n");getchviewk=getch();break;
case 51 :printf("果汁4元\n");getchviewk=getch();break;
case 52 :printf("奶茶2元\n");getchviewk=getch();break;
default : printf("显示错误提示信息\n");getchviewk=getch();
}
system("cls");
}
return 0;
}
热心网友
时间:2023-08-21 10:44
#include <stdio.h>
int main()
{
int m,i;
printf ("[1]可乐\t[2]咖啡\n[3]果汁\t[4]奶茶\n[0]退出\n");
for(i=0;i<5;++i)
{
printf ("请输入:\n");
scanf("%d",&m);
switch (m)
{
case 1: printf ("3元\n");break;
case 2: printf ("5元\n");break;
case 3: printf ("4元\n");break;
case 4: printf ("2元\n");break;
case 5:return 0;
default : break;
}
}
return 0;
}