代码
namespace 第十次作业第二题
{
class Program
{
static void Main(string[] args)
{
/**
* 购物金额结算
* 创建一个长度为5的 double类型数组,存储购物金额。
*循环输入五笔购物金额, 并累加总金额。
*利用循环输出五笔购物金额,最后输出总金额。
*
* */
try
{
Console.WriteLine("请输入会员本月的消费记录");
int[] scores;
scores = new int [5];
double sum = 0;
for (int i = 0; i < scores.Length; i++)
{
Console.Write("请输入第{0}笔购物金额",i+1);
scores[i]= Convert.ToDouble(Console.ReadLine());
sum += scores[i];
}
Console.WriteLine("序号 金额(元)");
for (int i = 0; i < scores.Length; i++) {
Console.WriteLine("{0} {1}",i+1,scores[i]);
}
Console.Write("总金额 {0}",sum);
}
catch
{
Console.WriteLine("你的输入有误");
}
Console.ReadKey();
}
}
}