C#:求1到100的和
Posted 向往的生活
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#:求1到100的和相关的知识,希望对你有一定的参考价值。
using System;
public class Program
{
public static void Main()
{
int sum=0;
for(int a=1;a<=100;a++)
{
sum=sum+a;
Console.Write(a);
}
Console.Write(sum);
Console.ReadLine();
}
}
以上是关于C#:求1到100的和的主要内容,如果未能解决你的问题,请参考以下文章