#include <stdio.h>
int main()
{
int a=0;
while (a <= 100)
{
if (a % 2 == 1)
{
printf("%d ", a);
}
a++;
}
return 0;
}
#include <stdio.h>
int main()
{
int a=0;
while (a <= 100)
{
if (a % 2 == 1)
{
printf("%d ", a);
}
a++;
}
return 0;
}
Python从0到100(七):Python列表介绍及运用
#include<stdio.h>int main(){ int i = 1; while(i<=100) { if(i%2 ==1)
## 使用while循环输入 1、2、3、4、5、6、8、9、10
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M