c#語言利用for迴圈進行數字累加的方法,一個簡單的例子。
方法/步驟
首先,假如從1累加到100,用控制檯程式。
程式碼例子:
namespace 累加
{
class Program
{
static void Main(string[] args)
{
int sum = 0;
for (int a = 1; a <= 100; a++)
{
sum += a;
}
Console.WriteLine($"一累加到一百的和為{sum}");
Console.ReadKey();
}
}
}
程式碼如圖所示:
for迴圈進行數字累加#
結果如下圖所示:
for迴圈進行數字累加#
像上面的例子,我們拓展一下,進行計算1到99的奇數和,那麼程式碼如下:
namespace 累加
{
class Program
{
static void Main(string[] args)
{
int sum = 0;
for (int a = 1; a <= 99; a=a+2)
{
sum += a;
}
Console.WriteLine($"一累加到一百的和為{sum}");
Console.ReadKey();
}
}
程式碼如圖所示:
for迴圈進行數字累加#
我們再拓展一下,進行計算2到100的偶數和,那麼程式碼如下:
namespace 累加
{
class Program
{
static void Main(string[] args)
{
int sum = 0;
for (int a = 2; a <= 100; a=a+2)
{
sum += a;
}
Console.WriteLine($"一累加到一百的和為{sum}");
Console.ReadKey();
}
}
}
程式碼如圖所示:
for迴圈進行數字累加#