标签:正整数 stat mes ram key names read namespace ==
namespace Test1_1
{
class Program
{
static void Main(string[] args)
{
int result = 0;
Console.WriteLine("请输入一个正整数:");
int n = int.Parse(Console.ReadLine());
if (n %2 == 0)//这里要注意 是求余运算 ,不能用“/”
{
for (int i = 0; i <= n;i+=2)
{
result += i;
}
}
else if(n%2!=0)
{
for (int i = 1; i <= n; i+=2)
{
result += i;
}
}
Console.WriteLine(result);
Console.ReadKey();
}
}
}
标签:正整数 stat mes ram key names read namespace ==
原文地址:http://www.cnblogs.com/hysu/p/7536652.html