摘要: 若已知当前年月日,要计算过了n天后天的年月日,代码如下: //代码是当前2022年4月8日, 过100天后的年月日 #include<stdio.h>static int M[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};void Data(){ int y 阅读全文