int[ , , ] a = new int[ 3, 2, 3 ]; Console.WriteLine(a.Length);
int i; for(i = 0; i<=10; i++) { if(i == 4) { Console.Write(i + " "); continue; } else if (i != 4) Console.Write(i + " "); else break; }
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.