我正在尝试在C程序中编写一个日期计算器,范围从1/1/1902到12/31/2299,我遵循http://en.wikipedia.org/wiki/Calculating_the_day_of_the_week的算法与世纪表,月表和日期表,但当我试图打印出来时,这就是我所拥有的
Enter Year, Month and Day as YYYY,M,DD
1982 4 24
Saturday1982 ,6, 24, is 6
而不是说1982 4 24 is a Saturday
我写的程序有什么问题?开关盒的位置?
#include <stdio.h>
int main (void)
{
// insert code here...
int day,month,year;
printf("Enter Year, Month and Day as YYYY,M,DD\n");
scanf("%4d%d%2d", &year, &month, &day);
if (year >= 1901 && year <= 2299 &&
month >= 1 && month <= 12 &&
day >= 0 && day <= 31)
{
int century = year/100;
/* making a century table for calculation*/
switch(century)
{
case 19:
century=0;
break;
case 20:
century=6;
break;
case 21:
century=4;
break;
case 22:
century=2;
break;
}
int last2_of_year= year % 100;
/* Last 2 digits of the year entered*/
int last2_div_4 = last2_of_year/4;
switch (month)
{
case 1:
month=0;
break;
case 2:
month=3;
break;
case 3:
month=3;
break;
case 4:
month=6;
break;
case 5:
month=1;
break;
case 6:
month=4;
break;
case 7:
month=6;
break;
case 8:
month=2;
break;
case 9:
month=5;
break;
case 10:
month=0;
break;
case 11:
month=3;
break;
case 12:
month=5;
break;
}
int total_num = (century+ last2_of_year +day +month +last2_div_4)%7;
switch (total_num)
{
case 0:
printf("Sunday");
break;
case 1:
printf("Monday");
break;
case 2:
printf("Tuesday");
break;
case 3:
printf("Wednesday");
break;
case 4:
printf("Thursday");
break;
case 5:
printf("Friday");
break;
case 6:
printf("Saturday");
break;
}
printf("%d ,%d, %d, is a %d", year,month,day,total_num);
}
else
{
printf("invalid\n");
}
return 0;
}
答案 0 :(得分:2)
你说:
printf("%d ,%d, %d, is a %d", year,month,day,total_num);
那将打印
L, M, N, is a P
其中L
,M
,N
和P
是数字。
您需要printf()
之前天名switch
,并且需要删除最终%d
和total_num
printf
。然后printf
将打印
L, M, N, is a
并且天名printf
中的switch
会在同一行打印出当天的名字,为您提供
L, M, N, is a XXXXXXXXXXX
编辑以发表评论:
查看程序中的输出语句。
遇到的第一个输出语句是日期名称开关中的printf
调用,用于打印日期名称。因此,当您的程序根据您提到的输入运行时,将打印出的第一件事是
Saturday
然后在日期名称切换后,下一个printf
是
printf("%d ,%d, %d, is a %d", year,month,day,total_num);
由于year
为1982
,month
为4
,day
为24
,total_num
为{{1} } {,6
将输出
printf
与前一个1982, 4, 24, is a 6
输出位于同一行,这意味着整个输出为
Saturday
答案 1 :(得分:1)
看起来@QuantumMechanic找到了问题的根本原因,但我想建议一些改变:
int century = year/100;
/* making a century table for calculation*/
switch(century)
{
case 19:
century=0;
break;
我非常使用单个变量代表两种不同的东西。这里,century
表示用户输入的人类可读世纪和是本世纪第一天的偏移量。两个变量可以提供更清晰的代码,并允许您在以后需要时重新使用century
信息。
其次,使用case
语句存储几个月的偏移感觉有点......过度了:
switch (month)
{
case 1:
month=0;
break;
case 2:
month=3;
break;
case 3:
month=3;
break;
这可以通过数组查找来处理:
int leap_month[] = [-1, 6, 2, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5];
int norm_month[] = [-1, 0, 3, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5];
if (leap_year)
month_offset = leap_month[month];
else
month_offset = norm_month[month];
-1
只是为了允许引用具有人性化索引(Jan == 1
)的表格。如果您觉得更容易,请随意将其删除并使用leap_month[month-1]
或类似内容。