购物

以表格的形式输出5笔购物金额及总金额1.创建一个长度为5的 double类型数组,存储购物金额。2.循环输入五笔购物金额, 并累加总金额。3.利用循环输出五笔购物金额,最后输出总金额。

try

{

Console.WriteLine("请输入会员本月的消费记录:");

string[] money = new string[5];

for (int i = 0; i < money.Length; i++)

{

Console.WriteLine ("请输入第{0}个购物金额:",i+1);

money[i] =(i+1 +" " + Console .ReadLine ());

}

        Console.WriteLine ("序号              金额(元)");

        foreach (var item in money)

        {

            Console.WriteLine(item);

        }

    }

    catch

    { Console.WriteLine ("程序错误");

    }

    Console.ReadKey();

你可能感兴趣的:(购物)