用C#编程实现: 从用户处读取一整数,将各个位上的数分别输出。如输入“3417”,输出“3,4,1,7”。

完整的程序
2024-11-26 09:36:11
推荐回答(2个)
回答1:

将该整数存放在字符串变量中
这里就用楼主的“3417”作为例子

Console.Write("输入:");
string s = Console.ReadLine();
for (int i = 0; i < s.Length; i++)
{
Console.Write(s[i]);
if (i != s.Length - 1)
{ Console.Write(","); }
}

回答2:

string 字符串可以看成一个数组!按数组的方式输出就OK 了
string num = "135135";
for (int i = 0; i < num.Length-1;i++ )
{
label1.Text += num[i]+",";
}