[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{int year;int month;int day;}s;int main(){int t=0; scanf(…… 题解列表 2019年05月05日 0 点赞 0 评论 825 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{int year;int month;int day;}s;//定义结构体int main(){int t=0;…… 题解列表 2019年05月05日 0 点赞 0 评论 585 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码)(不用数组和switch) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct time{ int year; int month; int day;};int m (){ struct time …… 题解列表 2019年05月21日 0 点赞 0 评论 348 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int day; }num; int Is_runnian(int x) { in…… 题解列表 2019年07月15日 0 点赞 0 评论 397 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include #include #include #include struct { int year,month,day; }pr; int main() { int …… 题解列表 2019年08月30日 0 点赞 0 评论 431 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include int main() { int year,month,day,yearDay; int i=0; …… 题解列表 2019年11月03日 0 点赞 0 评论 297 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include int main(){ typedef struct data{ int yy; int mm; int rr…… 题解列表 2019年11月17日 0 点赞 0 评论 320 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include int day_of_year(int year, int month, int day); int main(void) { int year,month,day; …… 题解列表 2019年12月07日 0 点赞 0 评论 485 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要: import java.util.Scanner; public class Dsss { public static void main(String[] args) { …… 题解列表 2019年12月18日 0 点赞 0 评论 502 浏览 评分: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 评论 807 浏览 评分:0.0