用C#编写程序,输入一个不多于5位的正整数,要求:(1)输出它是几位数(2) 分别输出每一位数字? 5
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class A{
static void Main(string[] args)
{
string s = Console.ReadLine();
int j = 0;
while (j<5)
{
if (s[j] >= '0' && s[j] <= '9')
{
j++;
}
else break;
}
Console.WriteLine("位数:{0}",j);
for (int i = 0; i < j; i++)
{
Console.Write("{0} ",s[i]);//输出
}
Console.ReadKey();
}
}