免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2161 | 回复: 15
打印 上一主题 下一主题

[C] 新手写的一个小程序,大神指点下 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-24 16:21 |只看该作者 |倒序浏览
本帖最后由 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);

}

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
2 [报告]
发表于 2012-08-24 16:26 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
3 [报告]
发表于 2012-08-24 16:28 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
4 [报告]
发表于 2012-08-24 16:29 |只看该作者
哦,谢谢 忘了计算'\0'了,怎么不报错啊?
回复 2# pmerofc


   

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
5 [报告]
发表于 2012-08-24 16:30 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
6
发表于 2012-08-24 16:31
结构体中存月份啊
回复 3# pmerofc


   

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
7 [报告]
发表于 2012-08-24 16:31 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
8
发表于 2012-08-24 16:31
哪里没实现啊。。。
回复 5# pmerofc


   

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
9 [报告]
发表于 2012-08-24 16:32 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
10 [报告]
发表于 2012-08-24 16:33 |只看该作者
恩,这个我知道,确实是个明显错误
回复 7# pmerofc


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP