1. 程式人生 > >3+33+333(網上找的,僅自用,非原創)

3+33+333(網上找的,僅自用,非原創)

tel int32 pos lin 原創 ons body read for

Console.WriteLine("請輸入需要計算的數");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請輸入項數");
int n = Convert.ToInt32(Console.ReadLine());
double k=0, m = 0;
for (int i = 1; i <= n; i++)
{
k += a*(double)Math.Pow(10, i - 1);
m += k;
}
Console.WriteLine(m);
Console.ReadLine();

3+33+333(網上找的,僅自用,非原創)