- 1月 26 週一 201514:58
預計要念的書單
- 1月 25 週日 201522:11
SDK 與 IDE 差別
- 1月 24 週六 201516:43
訓練聽力 + 10 個 get 片語

get along with = co-operate, be friendly with
get over = let go, forget about
get down = depress, make sad
- 1月 16 週五 201510:37
英文文法: neither 與 none 區别 整理
§ none意指「三者以上皆不」( 後接單數或複數動詞 )。
neither意指「二者以上皆不」( 後接單數動詞 )。
總結,再給例子
either of (兩者其一)
neither of(兩者都不)
這兩個後+單數
both of (兩者都),後+複數
all of (三者或三者以上都是)
none of (三者或三者以上都不是)
None of the three criminals is sent back to Taiwan by now.
neither意指「二者以上皆不」( 後接單數動詞 )。
總結,再給例子
either of (兩者其一)
neither of(兩者都不)
這兩個後+單數
both of (兩者都),後+複數
all of (三者或三者以上都是)
none of (三者或三者以上都不是)
None of the three criminals is sent back to Taiwan by now.
- 1月 07 週三 201520:22
break 和 continue 學習

1. break 對於巢狀迴圈或多重迴圈,只會跳離一層!
#include<stdio.h>
#include<conio.h>
int main()
{
int i = 5, j = 0;
int a = 0;
for( i=0; i<5; i++ )
{
for( j=0; j<4; j++ )
{
if(i==3)
break;
a += i+j;
}
}
- 1月 07 週三 201517:01
丟骰子 : 使用亂數
Write a program to simulate a dice, and print out the minimum times to throw out all the numbers.
- 12月 27 週六 201419:32
The reason of Suck Kmp Player

以後不要下載KMP Player! 可怕的軟體,撥放功能不好之外,卸載後還一直吃系統的記憶體資源,C:\Program Files (x86)\PANDORA
必須先到工作管理員的服務,強制停止PanService 後,才能刪除這個資料夾。 Suck Kmp!
- 12月 26 週五 201417:12
今日分享
這一輩子一定要交的四位朋友:
1,欣賞你的朋友: 在你窮困潦倒的時候鼓勵你、幫助你。
2,有正能量的朋友:在你傷心難過的時候陪伴你,開解你。
3,為你領路的朋友: 願意無私引領你,走過泥濘,迷霧。
1,欣賞你的朋友: 在你窮困潦倒的時候鼓勵你、幫助你。
2,有正能量的朋友:在你傷心難過的時候陪伴你,開解你。
3,為你領路的朋友: 願意無私引領你,走過泥濘,迷霧。
- 12月 24 週三 201415:05
基本運算子 a++ 與 ++a 差異

a=b++ + ++b*c%3 :
a=b;
