…
作业1
…
在控制台显示5件特价商品名称
实现思路:
(1) . 创建一个长度为5的String数组,存储商品名称。
(2) . 使用循环输出商品名称
…
代码
…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] name = new string[5];
Console.WriteLine("商品名称:");
for(int i=0;i<name.Length;i++)
{
if (i == 0)
{ Console.WriteLine("Nike背包"); }
else if (i ==1)
{ Console.WriteLine("Adidas运动衫"); }
else if (i ==2)
{ Console.WriteLine("李宁运动鞋"); }
else if (i ==3)
{ Console.WriteLine("Kappa外套"); }
else if (i == 4)
{ Console.WriteLine("361°腰包"); }
}
Console.ReadKey();
}
}
}
…
效果
…
image.png
…
作业2
…
以表格的形式输出5笔购物金额及总金额
提示说明
步骤:
1.创建一个长度为5的 double类型数组,存储购物金额。
2.循环输入五笔购物金额, 并累加总金额。
3.利用循环输出五笔购物金额,最后输出总金额。
…
代码
…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{ /**
Console.WriteLine("{0} {1}", i+1, money[i]);*/
try
{
double[] money = new double[5];
double sum = 0;
for (int i = 0; i < money.Length; i++)
{
Console.WriteLine("请输入第{0}笔购物金额:", i + 1);
money[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + money[i];
}
Console.WriteLine("序号 金额(元)");
int j =1;
foreach (var item in money)
{
Console.WriteLine("{0} {1}",j,item);
j++;
}
Console.WriteLine("总金额:{0}", sum);
}
catch {
Console.WriteLine("输入有误");
}Console.ReadKey();
}
}
}
…
效果
…
image.png
…
网友评论