發表文章

目前顯示的是 12月, 2017的文章

HW-2 for Chen

圖片
輸入一個奇數整數值 n,計算 2 - (1/3) + (3/5) + ... ± (n - 2) / n之值,並將結果輸出。 (限用一個 for 迴圈作答,迴圈頭的 i 必須宣告成整數變數) 執行範例如下: 輸入一個奇數整數值:111 Ans =1.43813 執行結果如圖。 參考解答如下。 #include <iostream> using namespace std; int main() { double n, sum = 2, t = -1; cout << "輸入一個奇數整數值:"; cin >> n; for (double i = 3; i <= n; i += 2, t *= -1) sum += (i - 2) / i * t; cout << "Ans = " << sum << endl; system("pause"); return 0; }

HW-1 for Chen

#include <iostream> using namespace std; int main() { int floor = 1; int N; int count = 0; cout << "輸入層數N:"; cin >> N; for (int i = 1; i <= N; i++) { if (i == 1) count++; else { count += i + floor; floor += i; } } cout << "當蘋果堆疊" << N << "層時,金字塔總共放了" << count << "個蘋果" << endl; system("pause"); return 0; }

Famous English Proverbs

為了幫助各位更方便的學習英文諺語 我把每個Proverb都一一列出來 不管在哪裡都可以輕鬆的複習 除了沒網路以外哈哈 An apple A Day Keeps The Doctor Away  英文解釋:Apples are very nutritious and they keep you in the pink of health. 中文解釋:一天一蘋果醫生遠離我 nutritious 有營養 First come,first served  英文解釋:The first in line will be attended to first. 中文解釋:先搶先贏,早起的鳥兒有蟲吃 attended 出席 Practice makes Perfect  英文解釋:Doing something over and over makes one better at it. 中文解釋:熟能生巧 Don't cry over spilt milk  英文解釋:There is no use in being upset over situations that have already happened and cannot be changed. 中文解釋:覆水難收,悔恨無益(對於已經發生的狀況) situations 情況 A stitch in time saves nine  英文解釋:A timely effort will prevent more work later. 中文解釋:事半功倍,乃時行事,防微漸杜 prevent  避免 Time and Tide wait for none  英文解釋:Opportunities do not wait for anyone. 中文解釋:歲月不留人,機會不等人 Opportunities 機會 Action speaks louder than words  英文解釋:What you do is more important than what you say. 中文解釋:多做少說,行動勝於空談 A penny saved is a penny earned  英文解釋:Saving a penny is just as g

[HTC ONE A9]手機殼圖片設計(聖誕節版)

圖片
此作品是受到同學委託而製作,由於第一次使用電繪,傷眼請見諒。 使用軟體:Adobe illustrator 圖片尺寸:70*145mm 耗時:10h以上

國文 默寫 10分

只要選一邊背就有10分 有錯的話請在下面留言 勞勞亭 天下傷心處,勞勞送客亭。 春風知別苦,不遣柳條青。 作者:李白 縱筆 之二 父老爭看烏角巾,應緣曾現宰官身。 溪邊古路三叉口,獨立斜陽數過人。 作者:蘇軾 -------------------------------------------------------------------------------------------------------------------------- 次元明韻寄子曲 半世交親隨逝水,幾人圖畫入凌煙。 春風春雨花經眼,江北江南水拍天。 欲解銅章行問道,定知石友許忘年。 脊令各有思歸恨,日月相催雪滿顛。 作者:黃庭堅 -------------------------------------------------------------------------------------------------------------------------- 玉階怨 玉階生白露,夜久侵羅襪。 卻下水精簾,玲瓏忘秋月。     作者:李白 縱筆 之二 父老爭看烏角巾,應緣曾現宰官身。 溪邊古路三叉口,獨立斜陽數過人。 作者:蘇軾 -------------------------------------------------------------------------------------------------------------------------- 畫鷹 素練風霜起,蒼鷹畫作殊。 攫身思狡兔,側目似愁胡。 絛鏇光堪擿,軒楹勢可呼。 和當擊凡鳥,毛血灑平蕪。 作者:杜甫

國文 通關密語

Call in 文字 重溫想像 國文給力 能聽能說

Google Code Prettify 為網頁中的程式碼上色

Github連結: Google Code Prettify 在HTML中插入以下JavaScript <script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script> 可以載入CSS樣式。 <style type="text/css"> .str { color: #D69D85; } .kwd { color: #569CD6; } .com { color: #57A64A; } .typ { color: #4EC9B0; } .lit { color: #DCDCDC; } .pun { color: #DCDCDC; } .pln { color: #DCDCDC; } .tag { color: #8AC763; } .atn { color: #E0E2E4; } .atv { color: #EC7600; } .dec { color: purple; } pre.prettyprint { border: 0px solid #888; } ol.linenums { margin-top: 0; margin-bottom: 0; } .prettyprint { background: #000000; } li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 { color: #2B91AF; list-style-type: decimal; } li.L1, li.L3, li.L5, li.L7, li.L9 { background: #101010; } @media print { .str { color: #060; } .kwd { color: #006; font-weight: bold; } .

C++ HW10-1 for WallPower

圖片
若有長方體物件分別為,一號長方體c1(2,3,3),二號長方體c2(5,5,5),求兩者體積。 參考輸出如下。

Java_CH11_HW2

import java.io.*; import java.util.*; public class Java_CH11_HW2 { public static void main(String[] args) throws IOException {

Java_CH11_HW1

import java.util.*; public class Java_CH11_HW1 { public static void main(String[] args) {

C++ HW9-2 for WallPower

圖片
使用動態記憶體,計算費氏數列,並與未使用動態記憶的比較時間。 執行結果如下。 參考答案。

C++ HW9-1 for WallPower

圖片
將好友資料儲存到Friend資料結構,輸入時新增該筆資料到檔案,輸出時從檔案印出。 參考輸出如下。