[编程入门]结构体之时间设计-题解(C++代码) 摘要:#include using namespace std; int main() { int y, m,dd, d[100] = { 0,31,29,31,30,31,30,31,31,30…… 题解列表 2019年12月26日 0 点赞 0 评论 438 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct week{ int year; int month; int day; }; int main() { st…… 题解列表 2020年01月11日 0 点赞 0 评论 427 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码)当小白用了结构体... 摘要:```c #include #include typedef struct Years{ int nian;int yue; int ri; }today; //将这种类型…… 题解列表 2020年01月23日 0 点赞 0 评论 626 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int days; }; int main() { struct date a; …… 题解列表 2020年01月27日 0 点赞 0 评论 366 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include #include struct riqi { int year; int month; int day; }calendar; int d(in…… 题解列表 2020年01月31日 0 点赞 0 评论 398 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int mon; int day; }s; int main() { int x; scanf("%d%…… 题解列表 2020年01月31日 0 点赞 0 评论 524 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date { int year; int month; int day; } date; int days(int year,i…… 题解列表 2020年02月14日 0 点赞 0 评论 510 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date{ int year; int month; int day; }; bool isLeap(int y…… 题解列表 2020年02月14日 0 点赞 0 评论 451 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct Date{ int year; int month; int day; }; bool is…… 题解列表 2020年02月14日 0 点赞 0 评论 415 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include int main() { int year,month,day; int leap,i,dayth; int monday[2][13]={{ 0,31,28,31,…… 题解列表 2020年02月22日 0 点赞 0 评论 436 浏览 评分:0.0