题解 1997: 日期换算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

确定不来看看?

摘要:解题思路:把当前月之前天数加起来 再加上当前日期注意事项:日期需要正确输入参考代码:#include <stdio.h>int main(){ int x,y,s=0; scanf("%d%d",&x……

勇士不再回头,数组举高

摘要:解题思路:用数组比用switch强注意事项:要开心参考代码:#include<stdio.h>int main(){ int i=2019,j,k,l,a[13]={0,0,31,59,90,120,……

日期换算-题解(C语言代码)

摘要:解题思路:注意事项注意循环i从0开始,数组第一个是0;参考代码:#include<stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,3……

日期换算-题解(C语言代码)

摘要:解题思路: 这道题蛮简单的,废话不多说,看代码。 参考代码: ```c #include int main() { int a[12]={31,28,31,30,31,30,31,……