using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication33
{
class Program
{
static void Main(string[] args)
{
string[] trade = { "Nike背包", "Adidas运动衫", "李宁运动鞋", "kappa外套", "361°腰包" };
for (int i = 0; i < trade.Length; i++)
{
Console.WriteLine("{0}",trade[i]);
}
Console.ReadKey();
}
}
}
网友评论