服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C++实现简易万年历

C++实现简易万年历

2021-08-04 12:09Monarch666 C/C++

这篇文章主要为大家详细介绍了C++实现简易万年历,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C++实现简易的万年历,供大家参考,具体内容如下

代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
*文件名称:万年历.cpp
*作  者:chenghan
*完成日期:2019/1/10
*版 本 号:1.0
*问题描述:制作一个简单的万年历
*/
#include<iostream>
#include <string>
using namespace std;
 
//判断一年是否为闰年,是返回true 否返回false
bool isleapyear(int year);
 
//兔子图案
void Rabbit(); 
 
//封装时间类 私有数据成员包括年月日
class Date
{
 private:
  int year, month, day; //私有数据成员
 public:
  Date(){} //无参的构造函数
  Date(int year, int month, int day); //有参的构造函数
  void Disp_Date();  //显示星期数
  void set(); //用户输入时间
  int week(); //判断星期的函数
 void show(); //显示日历的函数
};
 
//主函数
int main()
{
  Date t; //创建一个Date类对象
  string N="yes";
  Rabbit();
 while(N=="yes"){
 t.set(); //调用设置时间函数
 t.Disp_Date(); //显示星期
   t.show();  //展示日历画面
   cout<<"\n是否继续查询,是(yes)否(no)\n";
   cin>>N;
 }
  
  return 0;
}
 
//判断一年是否为闰年,是返回true 否返回false
bool isleapyear(int year)
{
  if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
    return true;
  else
    return false;
}
 
//兔子图案
void Rabbit() 
{
 cout<<endl;
  cout<<"         ┏━┓ ┏━┓"<<endl;
  cout<<"作者:chenghan  ★│┃ ┃│┃"<<endl;
  cout<<"         ┃│┗灬┛│┃"<<endl;
  cout<<"版本:1.0     ┃     ┃"<<endl;
  cout<<"         ┃ ^   ^ ┃"<<endl;
  cout<<"时间:2019/1/10   ﹌ ˇ ﹌  "<<endl;
  cout<<"         ┗○━━━○┛"<<endl;
  
  cout<<"---------------------------------\n";
  
  cout<<"欢 来 万 历"<<endl;
  cout<<" 迎 到 年 !"<<endl;
  
   cout<<"---------------------------------------------------\n";
}
 
//有参的构造函数
Date::Date(int year, int month, int day) //有参的构造函数
{
    this->year = year;
    this->month = month;
    this->day = day;
}
 
//显示星期数
void Date::Disp_Date(){   
    cout << year << "年" << month << "月" << day << "日 星期" ;
    switch(this->week()){
     case 0:
     cout<<"日\n";
     break;
     case 1:
     cout<<"一\n";
     break;
     case 2:
     cout<<"二\n";
     break;
     case 3:
     cout<<"三\n";
     break;
     case 4:
     cout<<"四\n";
     break;
     case 5:
     cout<<"五\n";
     break;
     case 6:
     cout<<"六\n";
     break;
 }
  }
  
//用户设置时间
void Date::set()
  cout<<"请输入您所想要查找的年、月、日:";
  cin>>year>>month>>day;
}
 
//判断星期的函数
int Date::week(){
 int C,y,d,M;
 if(this->month==1||this->month==2){
 C = (this->year-1)/100;
 y = (this->year-1)%100;
 M = this->month+12;
 d = this->day;
 }
 else{
 C = this->year/100; //C世纪数减一
 y = this->year%100; //y年份后两位
 d = this->day; //d是日
 M = this->month;
 }
 int W = C/4 - 2*C + y + y/4 + 13 * (M+1) / 5 + d - 1; //判断星期的蔡勒公式
 if (W < 0) /* 如果w是负数,则计算余数方式不同 */
 {
    W = 7 - (-W) % 7;
    return W; //返回值1~6对应星期一到六 0对应七
 }
 else return W%7;
}
 
//显示日历的函数
void Date::show(){  
 Date temp;
 temp.year = this->year;
 temp.month = this->month;
 temp.day = 1;
 
 int count = temp.week();
 cout<<"---------------------------------------------------"<<endl;  //粗制滥造的界面
 cout<<"---------------------"<<this->year<<"年"<<this->month<<"月"<<"---------------------\n";
 cout<<"日 一 二 三 四 五 六\n";
 for(int i=0;i<count;i++){
 cout<<" \t";
 }
 if(temp.month == 1 ||temp.month == 3 ||temp.month == 5 || temp.month ==7 || temp.month ==8 || temp.month ==10 ||temp.month == 12){
 for(int j=1;j<32;j++){
  if(j<10)cout<<" "<<j<<"\t";
  else cout<<j<<"\t";
  if(count==6){
  cout<<"\n";
  count = 0;
  }
  else count++;
 }
 }
 else if(temp.month == 4 ||temp.month == 6 ||temp.month == 9 ||temp.month == 11){
 for(int j=1;j<31;j++){
  if(j<10)cout<<" "<<j<<"\t";
  else cout<<j<<"\t";
  if(count==6){
  cout<<"\n";
  count = 0;
  }
  else count++;
 }
 }
 else if(temp.month==2){
 if(isleapyear(this->year)){
  for(int j=1;j<30;j++){
  if(j<10)cout<<" "<<j<<"\t";
  else cout<<j<<"\t";
  if(count==6){
   cout<<"\n";
   count = 0;
  }
  else count++;
  }
 }
 else{
  for(int j=1;j<29;j++){
  if(j<10)cout<<" "<<j<<"\t";
  else cout<<j<<"\t";
  if(count==6){
   cout<<"\n";
   count = 0;
  }
  else count++;
  }
 }
 }
 cout<<"\n---------------------------------------------------";
}

运行结果:

C++实现简易万年历

代码中没有检查输入错误的机制,写的比较粗糙,有许多错误之处望指正。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_43938802/article/details/86349651

延伸 · 阅读

精彩推荐