[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include int day_of_year(int year, int month, int day); int main(void) { int year,month,day; …… 题解列表 2019年12月07日 0 点赞 0 评论 716 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要: import java.util.Scanner; public class Dsss { public static void main(String[] args) { …… 题解列表 2019年12月18日 0 点赞 0 评论 709 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 用数组做的,没学结构体,理解简单。 摘要:#include int main() { int a,b,c,s; scanf("%d%d%d",&a,&b,&c);//输入年月日 if(a%4==0)//如果是闰年,由月…… 题解列表 2019年12月19日 0 点赞 0 评论 1070 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(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 评论 817 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct week{ int year; int month; int day; }; int main() { st…… 题解列表 2020年01月11日 0 点赞 0 评论 787 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码)当小白用了结构体... 摘要:```c #include #include typedef struct Years{ int nian;int yue; int ri; }today; //将这种类型…… 题解列表 2020年01月23日 0 点赞 0 评论 924 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int days; }; int main() { struct date a; …… 题解列表 2020年01月27日 0 点赞 0 评论 583 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include #include struct riqi { int year; int month; int day; }calendar; int d(in…… 题解列表 2020年01月31日 0 点赞 0 评论 631 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int mon; int day; }s; int main() { int x; scanf("%d%…… 题解列表 2020年01月31日 0 点赞 0 评论 1074 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date { int year; int month; int day; } date; int days(int year,i…… 题解列表 2020年02月14日 0 点赞 0 评论 792 浏览 评分:0.0