| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1115 人关注过本帖
标题:北京奥运会倒计时(有缺陷)
取消只看楼主 加入收藏
samlee728
Rank: 1
等 级:新手上路
帖 子:25
专家分:0
注 册:2004-11-16
收藏
 问题点数:0 回复次数:0 
北京奥运会倒计时(有缺陷)

呵呵 帮优化优化阿 呵呵 谢谢啦

#include<stdio.h> int leap(int year) { if( (year%4==0&&year%100!=0)||(year%400==0) ) return 1; else return 0; } int leftdays1(int year1,int year2) { int a; int days=0; for(a=1;a<(year2-year1);a++) days+=(365+leap(year1+a) ); return days; } int leftdays2(int month,int year) { int sum=0; int i; int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; for(i=0;i<month;i++) sum+=d[month]; if( leap(year) && month>2 ) sum+=1; return sum; } main() { int b_year,b_month,b_day; int o_year,o_month,o_day; int totaldays; int a,b,c; int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; clrscr(); printf("please input the begin date with space\n"); scanf("%d %d %d",&b_year,&b_month,&b_day); printf("please input the end date\n"); scanf("%d %d %d",&o_year,&o_month,&o_day); a=leftdays1(b_year,o_year); b=leftdays2(o_month,o_year)+o_day; c=365+leap(b_year)-leftdays2(b_month+1,b_year); totaldays=a+b+c+d[b_month]-b_day; if(leap(b_year)&&b_month==2) totaldays+=1; printf("There are %d days left\n",totaldays); getch(); }

搜索更多相关主题的帖子: int 北京奥运会 缺陷 year 倒计时 
2004-11-17 10:14
快速回复:北京奥运会倒计时(有缺陷)
数据加载中...
 
   



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

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