問題描述:給出兩個日期計算兩者的天數距離;給出乙個日期確定之周幾;列印出給出年月的日曆
參考:#include #include using namespace std;
//有效月份1-12
const int days_everymonth[13] = ;
typedef struct
date;
int which_days(date d)//該日期是本年的那一天
void print_calendar(date d)
{ int month_days=0;
if(d.month==2)
if(d.year%400==0 || (d.year%100!=0&&d.year%4==0))
month_days=29;
else
month_days=28;
else
month_days=days_everymonth[d.month];
printf("%d-%d日曆\n",d.year,d.month);
printf("sun\tmon\ttues\twed\tthur\tfri\tsat\n");
d.day=1;
int week=get_day_of_week(d);//本月1號週幾
int i=0;
for(i=0;i
數值演算法 《程式設計珠璣 續 》第14章課後題
第14題 在我的電腦上能夠執行,因為double是有精度限制的,當a 103時,執行10次就會停止了。include include includeusing namespace std int main double a 103 double x 1.0 double newx 0 int i 0...
《python核心教程》課後題答案註解
生成乙個有n個元素的由隨機數n組成的列表,其中n和n的取值範圍分別為 1 coding utf 8 def randomlist import random 匯入隨機模組 n i for i in xrange 2,101 n i for i in xrange 1,232 nn random.ch...
C Primer Plus課後程式設計答案第五章
共用標頭檔案 include include include include int main const int arraysize 100 intmain int main return0 const int cc 100 const double aa 0.1,bb 0.05 int main...