using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test1
{
class Program
{
//将一个字符串数组输出为|分割的形式,比如原字符串数组为:string[] str= {"梅西","卡卡","郑大世"}, 输出为:"梅西|卡卡|郑大世"。
static void Main(string[] args)
{ //声明一个已赋值的字符串
string[] str = {"梅西","卡卡","郑大世"};
//遍历数组成员
for (int i = 0; i < str.Length; i++)
{ //通过条件使得最后一个字符串后面不出现|
if (i < str.Length - 1)
{
Console.Write("{0}|", str[i]);
}
else
{
Console.Write("{0}", str[i]);
}
}
Console.ReadKey();
}
}
}
我自己写的 仅供参考 逻辑有问题 输出也有问题 应该把输出放进for循环里面啊 |