- 论坛徽章:
- 0
|
本帖最后由 xiaowh00 于 2012-08-24 16:44 编辑
// Write a program that prompts the user to enter the day, month, and year. The month can be a month number, a month name, or a month abbreviation. The program then should return the total number of days in the year up through the given day.
// 从键盘接收天数,接收月份(可以是数字,简称,全称),年份,返回总天数
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define N 12
struct mon{
char name[N];
int days;
};
int get_day(void); // get day from keyboard
int get_month(const struct mon *); // get month from keyboard
int get_year(void); // get year from keboard
int is_leap_year(int); // leap year or not
void calculate(const struct mon *,int,int,int); // calculate the days
void Tolower(char *); // convert the input month to lowercase (Jan to jan)
void eatline(void); // clean up the keyboard buffer
int main(void)
{
int d,m,y; // for integer day,month,year
int leap; // leap year or not
struct mon cal[N]={
{"january",31},
{"february",28},
{"march",31},
{"april",30},
{"may",31},
{"june",30},
{"July",31},
{"august",31},
{"september",30},
{"october",31},
{"november",30},
{"december",31}
};
d=get_day();
m=get_month(cal);
y=get_year();
leap=is_leap_year(y);
calculate(cal,d,m,leap);
return 0;
}
int get_day(void)
{
int day;
puts("Input the day(1-31):");
while(1)
{
if(scanf("%d",&day)==1 && day>0 && day<32)
return day;
else
{
puts("Input is invalid.");
eatline();
puts("Input the day(1-31):");
}
}
}
int get_month(const struct mon *pst)
{
int i;
int month;
int flag=1;
char line[N];
puts("Input the month([1-12]or[Jan,Feb...]or[january,february...])");
while(1)
{
if(scanf("%d",&month)==1 && month>0 && month<13)
return month;
else
{
gets(line);
Tolower(line);
for(i=0;i<N;i++)
if(strstr(pst.name,line)) // find input is valid month or not
return i+1;
}
puts("Input is invalid.");
puts("Input the month([1-12]or[Jan,Feb...]or[january,february...])");
}
}
int get_year(void)
{
int year;
puts("Input the year([1970-9999]):");
while(1)
{
if(scanf("%d",&year)==1 && year>1969 && year<10000)
return year;
else
{
puts("Input is invalid.");
eatline();
puts("Input the year([1970-9999]):");
}
}
}
int is_leap_year(int year)
{
if(year%400==0 || (year%4==0 && year%100!=0)) // leap year
return 1;
else
return 0;
}
void Tolower(char *str)
{
while(*str)
{
if(isupper(*str))
*str=tolower(*str);
str++;
}
}
void eatline(void)
{
while(getchar()!='\n')
continue;
}
void calculate(const struct mon *pst,int d,int m,int leap)
{
int i;
int total;
if(m>1 && leap)
total=1+d;
else
total=d;
for(i=0;i<m;i++)
total+=pst.days;
printf("%d\n",total);
} |
|