int i, j = 1, k; for (i = 0; i < 5; i++) { k = j++ + ++j; Console.Write(k + " "); }
byte a = 11, b = 22, c;
int a = 10, b = 20, c = 30; int res = a < b? a < c? c : a : b; Console.WriteLine(res);
Console.WriteLine(13 / 2 + " " + 13 % 2);
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.