int i, j = 1, k; for (i = 0; i < 5; i++) { k = j++ + ++j; Console.Write(k + " "); }
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.