c#編程:給定一個正整數求出是幾位數並逆序輸出
第一步:把輸入的數字轉為字符串n.ToString()
第二步:求出字符串的長度即為正整數的位數
第三步:從後向前逆序輸出
附代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//給一個正整數,
//要求:一、求它是幾位數,二、逆序打印出各位數字。
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
int n = 12345;//先定義一個正整數
string s = n.ToString();//把數字轉為字符串
int weishu = s.Length;//求出字符串的長度即為正整數有多少位
Console.WriteLine("位數是{0}\n",weishu);
Console.Write("逆序輸出:");
for (int i = weishu - 1; i >= 0; i--)
{
Console.Write(s[i]);//從後向前一個一個字符的輸出
}
Console.Read();
}
}
}