Задача 17 от първо домашно
Здравейте,
Някой може ли да ми каже какво трябва да се направи в тази задача.
"Write a program that prints at the console the numbers from 1 to 1000, each at a separate line". Тази част прилича на задача № 9, чието решение намирам така:
{
class PrintASequence
{
static void Main(string[] args)
{
for(int i=2;i<12;i++)
{
if(i%2==0)
{
Console.WriteLine(i);
}
else
{
Console.WriteLine(-i);
}
}
}
}
}
-------------
В случая мога да числата само положителни и да ги принтирам и до 1000.
Търсих различни източници за loop и breakpoints.
За loop открих:
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("--- For 1 ---");
for (int i = 0; i < 10; i++)
{
Console.WriteLine(i);
}
Console.WriteLine("--- For 2 ---");
for (int i = 10; i > 1; i--)
{
Console.WriteLine(i);
}
}
}
}
------
Само не разбирам каква точно да правя с breakpoints.