#include<stdio.h>

//输出1-100之间的奇数
int main(){
	int i = 1;
	while (i <= 100){
		if (i % 2 == 1){
			printf("%d ", i);
		}
		i++;
	}
	
	system("pause");
	return 0;
}



输出1-100之间的奇数
输出1-100之间的奇数

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-26
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-02-21
  • 2022-12-23
猜你喜欢
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案