/*
* 檔名稱:第八周專案.cpp
* 作 者:書寫未來的code
* 完成日期:2016 年 1 月 30 日
* 版 本 號:v1.0**/
//第8周專案6:本月有幾天?
#include "stdafx.h"
#include using namespace std;
int main()
else if (year % 100 != 0)
else if (year % 400 == 0)
else
//判斷所在月中某乙個月有多少天
switch (month)
else
break;
case 4:
case 6:
case 9:
case 11:
day = 30;
default:
break;
} cout << year << "年中" << month << "月有" << day << "天。" << endl;
return 0;
}//第8周專案5:定期存款利息計算器
#include "stdafx.h"
#include #include using namespace std;
int main()
interest = dsalary*rate*date;
sum = dsalary + interest;
cout << "到期利息為" << interest << "元," << "本息合計共" << sum << "元。" << endl;
return 0;
}//第8周專案4:個人所得稅計算器
#include "stdafx.h"
#include #include using namespace std;
int main()
else if (delt <= 4500)
else if (delt <= 9000)
else if (delt <= 35000)
else if (delt <= 55000)
else if (delt <= 80000)
else
dtax = (dsalary - 3500)*rate - k;
dnetincome = dsalary - dtax;
cout << "您本月應繳個人所得稅 " << dtax << " 元,稅後收入是 " << dnetincome << " 元。\n";
cout << "依法納稅,共享繁榮。謝謝使用!\n" << endl;
return 0;
}//第8周專案3:多分段函式求值,請用if~else~語句的巢狀,實現這個多分支的程式;
#include "stdafx.h"
#include #include using namespace std;
int main()
cout << "y = " << y << endl;
return 0;
}//第8周專案3:多分段函式求值,請用if~else~語句的巢狀,實現這個多分支的程式;
#include "stdafx.h"
#include #include using namespace std;
int main()
else if (x >= 2 && x < 6)
else if (x >= 6 && x < 10)
else
cout << "y = " << y << endl;
return 0;
}//第8周專案2:加班費,要不要?
#include "stdafx.h"
#include using namespace std;
int main()
else
cout << "salary = " << salary << endl << endl;
return 0;
}//第8周專案1:求分段函式的值
#include "stdafx.h"
#include using namespace std;
int main()
else
cout << "y = " << y << endl;
return 0;
}//閱讀下面的兩段程式,用「人腦」執行寫出輸出結果,再在計算機或手機上執行程式,對比自己寫出的結果,進行反思。
#include "stdafx.h"
#include using namespace std;
int main()
#include "stdafx.h"
#include using namespace std;
int main()
cout << "m = " << m << ",n = " << n << endl;
return 0;
}
第八周上機實踐
01.02.程式的版權和版本宣告部分 05.檔名稱 test.cpp 06.作 者 初瑞 07.完成日期 2013 年 10 月 15 日 08.版 本 號 v1.0 09.對任務及求解方法的描述部分 10.輸入描述 8 7 1 0 3 12.程式輸出 7 6 0 1 2 13.問題分析 輸入x,按...
《結構 C 第八周》
對任務及求解方法的描述部分 問題描述 結構是一種對資料及功能進行封裝的資料結構,是比類更簡單的物件。結構也可以實現介面。程式頭部的注釋結束 using system using system.collections.generic using system.linq using system.tex...
C 部落格第八周
io操作基本上需要用到stream相關的子類,因此這類問題在csdn問得也是比較多。其實對於stream來說,操作起來比較簡單,只要對細節的處理稍微注意一下,相信在使用它的時候也會得心應手。對於stream相關的問題,大致分如下幾類。問題一,基本操作的問題 問題二,編碼的問題 問題三,尾部處理問題 ...