Run ID:100353
提交时间:2024-12-07 16:17:25
#include <stdio.h> int main() { int a=100; int p = 0; for(int i = 1;i < a + 1;i ++) { if(i % 2 == 1) { printf("%d ", i); } } return 0; }