[编程入门]结构体之时间设计-题解(C++代码) 摘要:#include<iostream> using namespace std; struct time { int year , month , date; }a; int jug…… 题解列表 2020年12月14日 0 点赞 0 评论 420 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要:第一次用了一个很蠢的方法,后面发现有Calendar类;参考代码:import java.util.Scanner;public class Main { public static void …… 题解列表 2020年12月10日 0 点赞 0 评论 180 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int f(int y,int m,int d) { int a[13]={0,31,28,31,30,31,30,3…… 题解列表 2020年12月10日 0 点赞 0 评论 179 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:注意闰年的判断条件,参考代码:#include <stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,31,3…… 题解列表 2020年12月04日 0 点赞 0 评论 182 浏览 评分:0.0
c语言结构体之时间设计-题解(隔壁老爷爷都说好用) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[12]={31,28,31,30,31,30,31,31,30,31,30,31…… 题解列表 2020年11月28日 0 点赞 1 评论 399 浏览 评分:7.3
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct numberofday{ int year; int month; int day;} d;const int r=30;…… 题解列表 2020年11月28日 0 点赞 0 评论 302 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> typedef struct { int year; int month; int day; }…… 题解列表 2020年11月24日 0 点赞 0 评论 155 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码)这个代码真的很棒!勿喷!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; int b…… 题解列表 2020年11月23日 0 点赞 3 评论 402 浏览 评分:8.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{ int year; int month; int day;};int main(){ int i,sum=0;…… 题解列表 2020年11月23日 0 点赞 0 评论 178 浏览 评分:6.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:思绪有点乱,大概就这样了注意事项:参考代码:#includeint main(){ int year,month,day; scanf("%d %d %d",&year,&mon…… 题解列表 2020年11月23日 0 点赞 0 评论 282 浏览 评分:6.0