C#實現的一個小程序(計算任意幾個數的平均數)
這是一個送給初學c#的程序,簡單明瞭,用於計算平均數,請自己研究一下它的結構。
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace Test
{
class Program
{
static void Main(string[] args)
{
do
{
Console.ResetColor();
Console.WriteLine("rn歡迎使用本程序。請輸入一系列數。rn");
//開始記錄數字
int s = 0;
double z = 0;
do
{
Console.Write("數字(按回車確認,直接按回車結束):_");
string i = Console.ReadLine();
int n;
if (int.TryParse(i, out n))
{
s++;
z += n;
}
else
{
break;
}
}
while (true);
if (s == 0)
{
Console.WriteLine("-> 參數錯誤。");
}
else
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("-> 平均數:{0}。感謝您的使用。", (double)(z / s));
}
}
while (true);
}
}
}
© 轉載需附帶本文連結,依 CC BY-NC-SA 4.0 釋出。