Hallo StageTwo.
Kann mir jemand sagen warum bei mir nichts ausgedruckt wird?
[cs]using System;
namespace ConsoleApplication_5
{
class Program
{
static void Main(string[] args)
{
int iLoop;
for (iLoop = 0; iLoop == 17; iLoop++) ;
{
switch (iLoop)
{
case 1:
Console.WriteLine(1);
break;
case 4:
Console.WriteLine(4);
break;
case 7:
Console.WriteLine(7);
break;
case 10:
Console.WriteLine(10);
break;
case 13:
Console.WriteLine(13);
break;
case 16:
Console.WriteLine(16);
break;
}
}
}
}
}
[/cs]