题解 1049: [编程入门]结构体之时间设计

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

筛选

自己做的新手,欢迎指导

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{    int year;    int month;    int day;};int mod(int y,i……

已过多少天

摘要:解题思路:switch中的break注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct{    int year,month,day……

666 必看 进入惊喜

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,n,z,j; scanf("%d%d%d",&x,&y,&n); { if(x%4==0)   ……

判断一年的第几天

摘要:参考代码:#include<stdio.h>struct date {    int year;    int month;    int day;};int main() {    struct d……