Здравейте,
на тази задача от подготовката за изпита на 18.06.2020 .NET
изпращам решение за C# и ми дава грешка, може ли някой да помогне , къде греша ?
Условие:
Long Sequence
Write a program that prints the first 1000 members of the sequence: 2, -3, 4, -5, 6, -7, …
- You might need to learn how to use loops in Java (search in Internet).
Input
- There is no input for this task.
Output
- Output the first 1000 members of the sequence, each on a separate line.
Решение:
using System;
namespace Mountain_Run
{
class Program
{
static void Main(string[] args)
{
for (int i = 2; i <= 1000; i++)
{
if (i%2==0)
{
Console.WriteLine(i);
}
else
{
Console.WriteLine(i*-1);
}
}
}
}
}