当前位置: 代码迷 >> ASP.NET >> 送分题?如何把abcdef一个一个的输出
  详细解决方案

送分题?如何把abcdef一个一个的输出

热度:7154   发布时间:2013-02-25 00:00:00.0
送分题?怎么把abcdef一个一个的输出?
送分题?怎么把abcdef一个一个的输出?
stirng   s= "abcd "
变成a
b
c
d


------解决方案--------------------------------------------------------
string s = "abcd ";
foreach (char c in s)
{
Console.WriteLine(c);
}
Console.ReadLine();
------解决方案--------------------------------------------------------
spit
------解决方案--------------------------------------------------------

string s = "abcd ";
for(int i=0;i <s.Length;i++)
{
console.WriteLine(s[i]);
}
  相关解决方案