Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
for
(
int
i=0; ; i++) {
-
if
(i<3) {
-
Console.Write(
"{0} "
, i);
-
}
-
else
{
-
break
;
-
}
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
for
(
int
i=0; ; i++) {
-
if
(i<3) {
-
Console.Write(
"{0} "
, i);
-
}
-
else
{
-
break
;
-
}
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
0 1 2