Console.Write("-->"+Math.Pow(10, 2000));
namespace prog { class Program { static void Main(string[] args) { int[] array = new int[Convert.ToInt32(args[0])]; foreach (int i in array) { Console.Write(i); } } } }
int [3] array; 0 0 0 0 0 1 0 0 2 ... 9 9 9
int [10] array; 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 2 ... 9 9 9 9 9 9 9 9 9 9
Leave a comment: