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();
}
}
}
时间: 2024-10-08 19:35:16