我正在尝试用c ++编写一个简单的程序,它返回给定日期的星期几。
输入格式为日,月,年。我无法让它与闰年一起工作。当输入年是闰年时,我尝试从a
变量中减去一个,但程序最终崩溃而没有错误消息。
我会很感激任何建议,但请尽量保持简单,我仍然是初学者。对这个愚蠢的问题道歉,请原谅我的错误,这是我第一次在这个网站上发帖。
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
using namespace std;
int d;
int m;
int y;
string weekday(int d, int m, int y){
int LeapYears = (int) y/ 4;
long a = (y - LeapYears)*365 + LeapYears * 366;
if(m >= 2) a += 31;
if(m >= 3 && (int)y/4 == y/4) a += 29;
else if(m >= 3) a += 28;
if(m >= 4) a += 31;
if(m >= 5) a += 30;
if(m >= 6) a += 31;
if(m >= 7) a += 30;
if(m >= 8) a += 31;
if(m >= 9) a += 31;
if(m >= 10) a += 30;
if(m >= 11) a += 31;
if(m == 12) a += 30;
a += d;
int b = (a - 2) % 7;
switch (b){
case 1:
return "Monday";
case 2:
return "Tuesday";
case 3:
return "Wednesday";
case 4:
return "Thursday";
case 5:
return "Friday";
case 6:
return "Saturday";
case 7:
return "Sunday";
}
}
int main(){
cin >> d >> m >> y;
cout << weekday(d, m, y);
}
答案 0 :(得分:8)
首先:如果已经存在可以处理相同问题的标准化功能,请不要编写自己的功能。重点是您可能容易犯错误(我已经可以看到一个现在你的weekday()
函数的第一行,而标准化函数的实现已经过彻底测试,你可以确信它们可以提供你期望得到的结果。
话虽如此,这是一种使用std::localtime和std::mktime的可能方法:
#include <ctime>
#include <iostream>
int main()
{
std::tm time_in = { 0, 0, 0, // second, minute, hour
9, 10, 2016 - 1900 }; // 1-based day, 0-based month, year since 1900
std::time_t time_temp = std::mktime(&time_in);
//Note: Return value of localtime is not threadsafe, because it might be
// (and will be) reused in subsequent calls to std::localtime!
const std::tm * time_out = std::localtime(&time_temp);
//Sunday == 0, Monday == 1, and so on ...
std::cout << "Today is this day of the week: " << time_out->tm_wday << "\n";
std::cout << "(Sunday is 0, Monday is 1, and so on...)\n";
return 0;
}
答案 1 :(得分:2)
您对闰年构成的理解不正确:
闰年是每4年除了如果它可以被100整除,但即便如此它仍然是闰年如果它可以被400整除。
关于如何计算&#34;天数&#34;的简明扼要的解释。 (dn)可以找到here。
获得日期编号(dn)后,只需执行模数7.结果将是星期几(道具)。
以下是一个示例实现(不检查日期是否为有效输入):
#include <iostream>
#include <iomanip>
typedef unsigned long ul;
typedef unsigned int ui;
// ----------------------------------------------------------------------
// Given the year, month and day, return the day number.
// (see: https://alcor.concordia.ca/~gpkatch/gdate-method.html)
// ----------------------------------------------------------------------
ul CalcDayNumFromDate(ui y, ui m, ui d)
{
m = (m + 9) % 12;
y -= m / 10;
ul dn = 365*y + y/4 - y/100 + y/400 + (m*306 + 5)/10 + (d - 1);
return dn;
}
// ----------------------------------------------------------------------
// Given year, month, day, return the day of week (string).
// ----------------------------------------------------------------------
std::string CalcDayOfWeek(int y, ul m, ul d)
{
std::string day[] = {
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday",
"Monday",
"Tuesday"
};
ul dn = CalcDayNumFromDate(y, m, d);
return day[dn % 7];
}
// ----------------------------------------------------------------------
// Program entry point.
// ----------------------------------------------------------------------
int main(int argc, char **argv)
{
ui y = 2017, m = 8, d = 29; // 29th August, 2017.
std::string dow = CalcDayOfWeek(y, m, d);
std::cout << std::setfill('0') << std::setw(4) << y << "/";
std::cout << std::setfill('0') << std::setw(2) << m << "/";
std::cout << std::setfill('0') << std::setw(2) << d << ": ";
std::cout << dow << std::endl;
return 0;
}
答案 2 :(得分:2)
您可以使用Gregorian Date System中的Boost C++ library来查找给定日期的星期几。这是一个简单的示例:
#include <boost/date_time.hpp>
#include <string>
#include <iostream>
const static std::string daysOfWeek[] = {
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
};
int getDayOfWeekIndex(int day, int month, int year) {
boost::gregorian::date d(year, month, day);
return d.day_of_week();
}
int main()
{
const int index = getDayOfWeekIndex(30, 07, 2018);
std::cout << daysOfWeek[index] << '\n';
}
此代码显示Monday
。
答案 3 :(得分:1)
我遇到了同样的问题,但我找到了一个简单的解决方案。
根据this帖子:
“以下是 Sakamoto, Lachman, Keith and Craver 建议的一个简单函数来计算日期。以下函数返回 0 表示星期日,1 表示星期一等。”
int dayofweek(int d, int m, int y)
{
static int t[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
y -= m < 3;
return ( y + y / 4 - y / 100 + y / 400 + t[m - 1] + d) % 7;
}
答案 4 :(得分:0)
当数字完全被7整除时会发生什么?
14/7 = 2 14%7 = 0
模运算符(%n)将返回一个从0到n -1的数字
如果n除以7,则余数永远不能为7 所以
int b = (a - 2) % 7;
switch (b){
case 1:
return "Monday";
case 2:
return "Tuesday";
case 3:
return "Wednesday";
case 4:
return "Thursday";
case 5:
return "Friday";
case 6:
return "Saturday";
case 7:
return "Sunday";
}
}
在这种情况下,它永远不会是星期天
试试这个
int b = (a - 2) % 7;
switch (b){
case 0:
return "Sunday";
case 1:
return "Monday";
case 2:
return "Tuesday";
case 3:
return "Wednesday";
case 4:
return "Thursday";
case 5:
return "Friday";
case 6:
return "Saturday";
default:
return "Error";
}
答案 5 :(得分:0)
针对旧问题的新答案,因为它们正在发生变化……
当前的C ++ 2a规范草案指出,以下功能与问题代码的意图相同:
#include <chrono>
#include <iostream>
int
main()
{
using namespace std;
using namespace std::chrono;
year_month_day dmy;
cin >> parse("%d %m %Y", dmy);
cout << format("%A", weekday{dmy}) << '\n';
}
目前,最终的C ++ 2a规范可能是C ++ 20,格式字符串将从"%A"
更改为"{:%A}"
。
今天,人们可以通过使用free, open-source date/time library来尝试使用这种语法,只是日期对象位于namespace date
中而不是namespace std::chrono
中。
#include "date/date.h"
#include <iostream>
int
main()
{
using namespace std;
using namespace date;
year_month_day dmy;
cin >> parse("%d %m %Y", dmy);
cout << format("%A", weekday{dmy}) << '\n';
}
答案 6 :(得分:-2)
int dayofweek(int day,int month,int year)
{
int arr[] = {0,3,2,5,3,5,1,4,6,2,4};
if(month<3)
year--;
return ((year+year/4-year/100+year/400+arr[month-1]+day)%7);
}
int main()
{
int day,month,year;
cout<<"Enter the Date for which day of the week need to be find (DD/MM/YYYY)."<<endl;
cin>>day>>month>>year;
int x = dayofweek(day,month,year);
if(x==0)
cout<<"Sunday"<<endl;
else if(x==1)
cout<<"Monday"<<endl;
else if(x==2)
cout<<"Tuesday"<<endl;
else if(x==3)
cout<<"Wednesday"<<endl;
else if(x==4)
cout<<"Thursday"<<endl;
else if(x==5)
cout<<"Friday"<<endl;
else if(x==6)
cout<<"Saturday"<<endl;
}