int a = 10, b = 20, c = 30; int res = a < b? a < c? c : a : b; Console.WriteLine(res);
int i = 20 ; for( ; ; ) { Console.Write(i + " "); if (i >= -10) i -= 4; else break; }
byte a = 11, b = 22, c;
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.