在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
#include <stdio.h> #include <string.h> #define sta 1500 #define Num 1600 int main() { int year; for(year = sta;year < Num + 1;year++) if(year % 4 == 0) { if(year % 400 == 0) { printf("%d \n",year); } else if (year % 100 != 0) { printf("%d \n",year); } } return 0; } 闰年判断。 #include <stdio.h> #include <string.h> #define Num 1600 int main() { int c,i = 0; char s[Num]; while(i < (Num - 1)) { c = getchar(); if(c == EOF) break; else if(c == '\n') break; s[i] = c; i++; } s[i] = '\0'; return 0; } 字符输入不用&& ||。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论