Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
//сокращенное объявление
-
int
[] ara = {10, 20, 30};
-
for
(
int
i=0; i<ara.Length; i++) {
-
Console.Write(
"{0} "
, ara[i]);
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
//сокращенное объявление
-
int
[] ara = {10, 20, 30};
-
for
(
int
i=0; i<ara.Length; i++) {
-
Console.Write(
"{0} "
, ara[i]);
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
10 20 30