while循环和for循环打印0到100的偶数。
时间: 2023-03-28 20:00:58 浏览: 370
python 用for循环实现1~100之间的偶数求和 示例
5星 · 资源好评率100%
可以使用以下代码实现:
// 使用while循环打印到100的偶数
int i = ;
while (i <= 100) {
if (i % 2 == ) {
printf("%d ", i);
}
i++;
}
// 使用for循环打印到100的偶数
for (int i = ; i <= 100; i++) {
if (i % 2 == ) {
printf("%d ", i);
}
}
阅读全文