<!-- flowchart 箭头图标 勿删 --> 给出你想知道的年份,便可以计算出该年对应的每个月每个日所对应的星期数,是不是感觉很好玩 ? #include <stdio.h> #include<stdlib.h> long int f(int year,int month) { /*f(年, ...
分类:
编程语言 时间:
2019-01-27 14:32:48
阅读次数:
219
实现万年历,日期加天数,日期减天数,日期减日期,打印日历。
#include
#include
using namespace std;
class Date
{
public:
Date(int year = 1901, int month = 1, int day = 1,int week=2)
:_year(year) ...
分类:
其他好文 时间:
2016-08-18 14:34:37
阅读次数:
181
万年历软件可以实现日历显示,日历查询,日历修改,日期备忘录,信息帮助这些功能:#include<stdio.h>#include"CalendarTable.h"#include<stdlib.h>intmain(){CalendarTable();system("pause");return0;}/*******************************************************..
分类:
其他好文 时间:
2016-02-24 15:48:08
阅读次数:
323
要求实现:基本成员函数,日期加减天数,日期与日期相减
#include<iostream>
usingnamespacestd;
classDate
{
public:
Date(intyear=1900,intmonth=1,intday=1)
:_year(year),_month(month),_day(day)
{
//cout<<"Date(intyear,intmonth,intday)"<<endl;
if..
分类:
编程语言 时间:
2016-02-01 09:59:57
阅读次数:
220
#define_CRT_SECURE_NO_WARNINGS1
#include<iostream>
#include<stdlib.h>
usingnamespacestd;
classDate
{
public:
Date(intyear=0,intmonth=0,intday=0)
:_year(year)
,_month(month)
,_day(day)
{
cout<<"构造函数"<<endl;
}
Date(constDate&..
分类:
编程语言 时间:
2016-01-18 21:08:49
阅读次数:
299
/******************************************************************************************
Purpose:
声明并实现一个万年历类【腾讯面试题】
Author:
周蒙蒙
Created Time:
2015-8-19
******************************************...
分类:
编程语言 时间:
2015-08-31 15:22:28
阅读次数:
188
要求:输入年份输出这一年的日历
注意:公元1900年一月一日是星期一,这一年是平年
思路:获取输入的年份y,首先获取从公元1900年到(y-1)年
的天数,然后获得该年份的第一天是星期几,进行输出。这次实例,我花费了很长的时间,最后发现错误的原因出在在求某一年是闰年还是平年的时候,我没有田间return语句,也就是没有返回值,真是醉了。我感觉这次我写代码的时候一点感觉都没有。哎,真是的,一颗老...
分类:
其他好文 时间:
2015-04-20 01:50:36
阅读次数:
168
cs.cs(类页面)using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace CityIndex{ #region ChineseCalendarException ...
这一周相对没有春节时这么闲了,白天也比较多的工作要做,每天晚上又要被我三岁的女儿折腾到十点, 实在没有多少时间学习。在前一周的基础上,这周我试着自己练习写了一个个人管理的android的程序,主要实现万年历,日程,随手便贴,短信群发等一些功能。下面总结一下自己在其过程中的一些心得和体会,都是一些没技...
分类:
移动开发 时间:
2014-08-21 09:43:23
阅读次数:
285
以前初学java写万年历,都是采用基本的算法求出是否闰年闰月 计算公式如下
int year = 2014, month = 8, total = 0;
if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8
|| month == 10 || month == 12) {
total ...
分类:
编程语言 时间:
2014-08-09 16:02:47
阅读次数:
275