[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct add{ int nian; int yue ; int ri ; };int main(){ int i,s…… 题解列表 2020年07月25日 0 点赞 0 评论 163 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n,y,r,i; cin>>n>>y>>r; switch(…… 题解列表 2017年11月16日 0 点赞 0 评论 808 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:闰年判断(整数年份被400整除,非整数年份被四整除)即比平年多一天(二月为29天)注意事项:注意结构体的用法 在main中要先定义参考代码:#include<stdio.h>struct d…… 题解列表 2018年11月30日 0 点赞 0 评论 361 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct week{ int year; int month; int day; }; int main() { st…… 题解列表 2020年01月11日 0 点赞 0 评论 288 浏览 评分:0.0
1049: [编程入门]结构体之时间设计(python) 摘要: ~~~python def is_lun(y): if y%100 == 0: if y%400 == 0: return True …… 题解列表 2024年10月24日 0 点赞 0 评论 67 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int Judge(int year){ if((year%4==0&&year%100!=0)||year%400==0) …… 题解列表 2018年05月21日 0 点赞 0 评论 435 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:y,m,d=map(int,input().split()) d1=[31,28,31,30,31,30,31,31,30,31,30,31] d2=[31,29,3…… 题解列表 2022年01月29日 0 点赞 0 评论 93 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct time // 定义结构体变量time { int year; int month; int day; }; int main(…… 题解列表 2021年01月30日 0 点赞 0 评论 313 浏览 评分:0.0
[编程入门]结构体之时间设计 极简利用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int days(int i){ int t=0; int num=0; int a[13]={0,31,28,31,…… 题解列表 2024年12月26日 0 点赞 0 评论 194 浏览 评分:0.0
结构体之时间设计C语言 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include int main() { int a[12] = { 31,28,31,30,31,30,…… 题解列表 2023年10月07日 0 点赞 0 评论 76 浏览 评分:0.0