编写程序用C加加编写输出1980到2880年所有闰年的年号每输出五个年号换一行
时间: 2024-06-12 22:06:00 浏览: 194
```cpp
#include <iostream>
using namespace std;
int main() {
int year = 1980;
int count = 0;
while (year <= 2880) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
cout << year << " ";
count++;
if (count == 5) {
cout << endl;
count = 0;
}
}
year++;
}
return 0;
}
```
相关问题
用c语言编写一个程序,输出从公元1000年至2000年所有闰年的年号,每输出3个年号换一行
以下是C语言编写的程序,输出从公元1000年至2000年所有闰年的年号,每输出3个年号换一行:
```c
#include <stdio.h>
int main() {
int year, count;
count = 0;
for (year = 1000; year <= 2000; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d ", year);
count++;
if (count % 3 == 0) {
printf("\n");
}
}
}
return 0;
}
```
该程序使用for循环遍历从1000年到2000年的所有年份,判断每个年份是否为闰年,如果是,则输出该年份,并将计数器加1。当计数器模3等于0时,即输出了3个年份时,换行。
C语言编写一个程序,输出从公元1000年至2000年所有闰年的年号,每输出3个年号换一行。
```
#include <stdio.h>
int main() {
int year, count = 0;
for (year = 1000; year <= 2000; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
printf("%d ", year);
count++;
if (count == 3) {
printf("\n");
count = 0;
}
}
}
return 0;
}
```
阅读全文