1049: [编程入门]结构体之时间设计
摘要:```c
//1049: [编程入门]结构体之时间设计
/*
平年:
1、3、5、7、8、10、12:31天
4、6、9、11:30天
2:28天
闰年:
1、3、……
题解 1049: [编程入门]结构体之时间设计
摘要:注意闰年的判断方法和switch的应用
#include
#include
#include
int main()
{
……
结构体之时间设计C语言
摘要:解题思路:这是最容易想到的解法,把每种情况列举出来。注意事项:参考代码:#include <stdio.h>struct Stu{ int year; int month; int date;};in……
7月和8月都是大月,都是31天,所以在这里进行分类就可以很好解决这个问题
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct node{ int year; int month; ……
[编程入门]结构体之时间设计(一看就懂)
摘要:```java
Scanner sc = new Scanner(System.in);
int year = sc.nextInt();
int Month = sc.nex……