| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 384 人关注过本帖
标题:又来求教了,劳烦大家看看
取消只看楼主 加入收藏
世界模型
Rank: 4
等 级:业余侠客
威 望:1
帖 子:240
专家分:226
注 册:2010-9-12
结帖率:97.44%
收藏
已结贴  问题点数:20 回复次数:1 
又来求教了,劳烦大家看看
/*
*输入年、月、日,输出该日期是该年的第几天。
*/
#include<stdio.h>

    void numberofdays();
int main()
{

    int yy,mm,dd;//年 月 日
    //int i;

    printf("please input the values of year month and day:\n");
    scanf("%d,%d,%d",&yy,&mm,&dd);
    printf("the days of this year:\n");
    numberofdays();
    return 0;
}

void numberofdays()
{
    int yy=0,mm=0,dd=0;
    int i;
    int dayofmonth[13]={0,31,29,31,30,31,30,31,31,30,31,30,31};//每月天数
    if(((yy%4)!=0)||(((yy%100)==0&&(yy%400)!=0)))
        dayofmonth[2]=28;//闰年的2月为28天
    int total_day=0;
    for(i=0;i<mm;i++)
        total_day=total_day+dayofmonth[i];
    total_day+=dd;
}
为什么运行不出结果
搜索更多相关主题的帖子: include please return 
2011-07-15 21:49
世界模型
Rank: 4
等 级:业余侠客
威 望:1
帖 子:240
专家分:226
注 册:2010-9-12
收藏
得分:0 
谢谢,大侠指点
2011-07-15 22:55
快速回复:又来求教了,劳烦大家看看
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.068744 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved