#define _CRT_SECURE_NO_WARNINGS 1#includeint main(){ int a = 1; while (a <= 100) { if (a % 2 == 1) printf("%d\n", a); a++; } return 0;}