第十一周專案五 當年第幾天

2021-06-26 22:01:56 字數 611 閱讀 3366

/*

*檔名稱:test.cpp

*作 者:李曉凱

*完成日期:2023年11月9日

*版本號:v1.0

*問題描述:根據函式輸出該年的第幾天

*輸入描述:輸入年 月 日

*程式輸出:輸出乙個數代表該年的第天

*/#include using namespace std;

int days(int y,int m,int d);

int main()

{ int year,month,day;

cout>month>>day;

cout<

<2>

#include using namespace std;

int main()

{ int y,m,d,sum,i;

char a,b;

cin>>y>>a>>m>>b>>d;

sum=d;

for(i=1; i

學習總結:通過前面所學的switch和if~else語句編出了這個程式,對這個程式很是喜愛,感覺就是乙個自己的專利作品!

第十一周專案五 當年第幾天

檔名稱 test.cpp 作 者 劉佳琦 完成日期 2014年 11 月 6 日 版 本 號 v1.0 問題描述 定義乙個函式,其引數為年月日,返回這一天為該年的第幾天。輸入描述 年月日 程式輸出 該年第幾天 includeusing namespace std int days int y,int...

第十一周 專案五 當年第幾天

檔名稱 test.cpp 作 者 阿里木 完成日期 2014年 11月 19日 版 本 號 v1.0 問題描述 返回該天為該年的第幾天 輸入描述 輸入年月日 程式輸出 輸出結果 include using namespace std int days int y,int m,int d int ma...

第十一周專案5 當年第幾天

定義乙個函式,其引數為年 月 日的值,返回這一天為該年的第幾天。要求在main函式中輸入年月日,然後呼叫這個函式求值,並在main函式中輸出結果。all gight reserved.檔名稱 temp.cpp 版本號 v1.0 include using namespace std int main...