c语言 输入一个时间(年、月、日、时、分、秒),判断时间是否合法,输出下一秒的时间 例如:输入2000-2-2923:59:59输出2000-3-10:0:0... 例如:输入2000-2-29 23:59:59 输出2000-3-1 0:0:0 展开 #include<stdio.h>int year = 0;int month = 0;int day = 0;int hour
int minute = 0;int second = 0;int main(){ void inputDate(); /*输入年-月-日 时:分:秒*/ void nextSceond(); /*计算下一秒的时间*/ int leapYear(int year); /*判断是否为闰年*/ int dayMonth(int month); /*返回每个月份对应的天数*/ inputDate();leapYear(year...