void printOddNumber() { for (int i = 1; i <= 100; ++i) { if (i & 0x01) cout << i << \n; } }
Post a Comment
No comments:
Post a Comment