C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;//月份 1~12月: a[1]~a[…… 题解列表 2018年11月12日 0 点赞 0 评论 313 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct data { int year; int month; int day; };//定义结构体 …… 题解列表 2020年03月18日 0 点赞 0 评论 324 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:```python class Year: def __init__(self): pass def put(self,year,mon,day): …… 题解列表 2023年12月20日 0 点赞 0 评论 83 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "stdlib.h"int main (void){ int x_day = 0; int dayv…… 题解列表 2021年02月16日 0 点赞 0 评论 109 浏览 评分:0.0
第1049题,巧妙利用Switch不加break 摘要:解题思路:注意事项:闰年:能被四整除同时不被100整除,或能被400整除year%4==0&&year%100||year%400==0参考代码:#include<stdio.h>struct dat…… 题解列表 2022年07月15日 0 点赞 0 评论 227 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:使用一个数组存放每个月份的天数,注意判断本年是否为闰年。注意事项:参考代码:#include<stdio.h>int main(){ int Y,M,D,sum=0,i,flag=0;…… 题解列表 2017年08月26日 0 点赞 0 评论 878 浏览 评分:0.0
结构体之时间设计-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int yil,int ay,int kun){ int i,t=0; for(i=1;i<ay;i++) { if…… 题解列表 2021年11月30日 0 点赞 0 评论 174 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要: import java.util.Scanner; public class Dsss { public static void main(String[] args) { …… 题解列表 2019年12月18日 0 点赞 0 评论 411 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include <stdio.h>struct days{int year;int month;int day;};int judge(int year){ int b; if((yea…… 题解列表 2018年03月04日 0 点赞 0 评论 534 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(python代码) 摘要:解题思路: 利用datetime 库。注意事项:参考代码:import datetimey,m,d=map(int,input().split())start = datetime.date(y…… 题解列表 2022年01月25日 0 点赞 0 评论 139 浏览 评分:0.0