C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int month_day[2][13]={{0,31,29,31,30,31,30,31,31,30,31,30,31},{0,3…… 题解列表 2017年07月24日 0 点赞 0 评论 860 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int Year,Month,Day; scanf("%d%d%d",&Year,&Month,&D…… 题解列表 2017年07月23日 0 点赞 0 评论 798 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:有些时候,解决日期类要先看看是否要预处理。参考代码:#include <stdio.h>#include <stdlib.h>#define IS_LEAPYEAR(x) (x%4==0&&x%100…… 题解列表 2017年07月22日 1 点赞 0 评论 667 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void S(int Y,int M…… 题解列表 2017年07月08日 2 点赞 1 评论 693 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:#include <iostream>using namespace std;int main (){ int year,month,day,result=0; cin>>year>>month>>d…… 题解列表 2017年06月28日 0 点赞 0 评论 909 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>#include<string.h>struct INFO{ int year; int mon; int day; int num;};int main() { s…… 题解列表 2017年06月19日 0 点赞 0 评论 740 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路以及注意事项:今天给大家分享的这题不难,但很搞笑哈。好久没写过怎么恶心的代码了,今天给大家开开眼哈。实例代码:#include"stdio.h" struct year { in…… 题解列表 2017年06月17日 0 点赞 1 评论 898 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 如果你看不懂这里的其他题解 点击我 摘要:题目分析 本题主要是训练结构体的创建 声明用法代码#include<stdio.h> leapyear(int a)//判断是否为闰年 { int b; if((a%4==0…… 题解列表 2017年06月13日 19 点赞 8 评论 2155 浏览 评分:9.8
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:注意1:闰年+1注意2:8月往后规律不一样。#include<stdio.h> int ifleap(int a){ int k = 0; if (((a % 4 == 0) && (a …… 题解列表 2017年06月13日 1 点赞 0 评论 952 浏览 评分:0.0