[摘要]实现效果:屏幕出现提示:1、小杯3元;2、中杯4元;3、大杯5元,请输入对应数字选择...用户输入数字则提示对应的结果:小杯,请支付3元;输入错误则默认中杯下面是源代码:using System;u...
实现效果:
屏幕出现提示:1、小杯3元;2、中杯4元;3、大杯5元,请输入对应数字选择...
用户输入数字则提示对应的结果:小杯,请支付3元;输入错误则默认中杯
下面是源代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleManyHellos
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("1=小杯3块,2=中杯4块,3=大杯5块");
Console.Write("你的选择?");
string s = Console.ReadLine();
int n = int.Parse(s);
switch (n)
{
case 1:
Console.WriteLine("小杯,请支付3块钱;");
break;
case 2:
Console.WriteLine("中杯,请支付4块钱;");
break;
case 3:
Console.WriteLine("大杯,请支付5块钱;");
break;
default:
Console.WriteLine("默认中杯,请付款4块钱;");
break;
}
Console.WriteLine("谢谢使用,祝您用餐愉快!");
}
}
}