
kpeggy.blogspot.com
K.SHO<br>小K 's Computer Life Diary. <br> <br>會整理ACM \ CPE 程式解題的筆記。 <br> <br>於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。
http://kpeggy.blogspot.com/
<br>小K 's Computer Life Diary. <br> <br>會整理ACM \ CPE 程式解題的筆記。 <br> <br>於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。
http://kpeggy.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
1.2 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
0
SITE IP
172.217.6.225
LOAD TIME
1.242 sec
SCORE
6.2
K.SHO | kpeggy.blogspot.com Reviews
https://kpeggy.blogspot.com
<br>小K 's Computer Life Diary. <br> <br>會整理ACM \ CPE 程式解題的筆記。 <br> <br>於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。
K.SHO: 八月 2013
http://kpeggy.blogspot.com/2013_08_01_archive.html
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 CPE 10480、UVA 11461程式解題。 CPE 10454、UVA 10812程式解題。 CPE 10403、UVA 10019程式解題。 訂閱: 文章 (Atom). 簡單主題 技術提供: Blogger.
K.SHO: 十月 2013
http://kpeggy.blogspot.com/2013_10_01_archive.html
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 UVA 10038、CPE 10405程式解題。 UVA]Let Me Count The Ways. UVA 10931、CPE 10461程式解題。 UVA]Hashmat the Brave Warrior. 訂閱: 文章 (Atom). UVA]Let Me Count The Ways. UVA]Hashmat the Brave Warrior. 簡單主題 技術提供: Blogger.
K.SHO: [UVA]Doom's Day Algorithm
http://kpeggy.blogspot.com/2014/04/javadooms-day-algorithm.html
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 UVA 12019、CPE 22801 程式解題。 日期範圍是2011一整年,所以就先找出2011年1月1號是星期幾,並以那一天作為起始點。 比如 : 2 28,經過59天),再 用取餘數. 然後,一行輸入為一筆測資,而且是以" 空白. 分開月分和天數,所以想一想 要如何處理空白,然後個別處理呢? 宣告整數陣列day,建立月份天數對照表。 (0月份設為0天). 宣告整數D,累計經過的總天數;宣告整數ans,最後用來找出星期幾。 可以連空白一起讀取,所以當我們輸入完數字n按下enter那一瞬間,n後面的那一格空白會被.nextLine()讀取到,造成字串無法輸入,所以必須在輸入字串之前,先用一次.nextLine(),將空白讀取掉。). 簡單來說,就是nextInt()和nextLine()並用會有一些狀況,其解決方法就是要用兩次nextLine(),才能輸入字串。 接下來就講到, 如何將一行資料,分割成兩筆資料啦!
K.SHO: [分享]想要邊看線上影片邊打報告?-PopVideo幫你!
http://kpeggy.blogspot.com/2014/06/popvideo.html
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 我有時候會聽TED練聽力,所以不想一直看著影片的字幕,但有時候如果跟不上時還是需要點回去頁面看一下,這樣子切換就有點麻煩。這個套件就讓我方便很多。 彈出來的視窗就會像這樣。將游標移上去,會有一小排列表。 最右邊的小圖釘的圖示,可以固定視窗永遠在最上層。按下去之後,不管你切換到哪個視窗, 它都不會跑不見囉! 因為我在看文章或是寫報告時,會有開Youtube聽音樂的習慣。所以我通常會將視窗縮的小小的,然後擺在角落,這樣要點Repeat比較方便。(笑). 當然你也可以將影片或是音樂下載下來,然後用撥放器撥放,還可以自動重複撥放。但是我這人比較懶惰,除非哪天心血來潮,不然通常我直接去Youtube聽。 這套件讓有習慣練打逐字稿的人也非常方便。直接將影片Pop出來,就不用那麼辛苦還要去調Browser或是Word的視窗。 或者, 因為用Youtube就要用到網頁, 網頁點著點著不知不覺會點到FB去,然後課本就慢慢的被挪到旁邊.
K.SHO: [UVA]Divide, But Not Quite Conquer!
http://kpeggy.blogspot.com/2014/06/uvadivide-but-not-quite-conquer.html
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 UVA]Divide, But Not Quite Conquer! UVA 10190、CPE 10419 程式解題。 輸入兩個數,比如125、5。用125除以5,除到後面的結果商為1,餘數為0時,就輸出所有商數( 125 25 5 1 );反之則輸出Boring! 要注意的是,最後的 商數一定要為1,餘數為0. 比如40 2。除到後面商數為5,餘數為0。(因為如果再算下去就會出現餘數,所以只能算到5). 此題重點在於, 如何判斷兩數相除的結果為1,並輸出計算過程。 也許有人會想到,每除一次,就輸出一次商數。但這樣會有一個問題:如果除到後面發現商數不為1呢? 比如:40 20 10 5. 則你輸出的結果就會變成:40 20 10 5 Boring! 宣告StringBuffer字串sb,處理字串輸出比較方便。(因為我 直接用String有逾時問題. 宣告字串陣列s1 ,將字串str分割後( str.split(" "). While(5 1)ʌ...
TOTAL PAGES IN THIS WEBSITE
19
501
Potential DNS Rebind attack detected, see http:/ en.wikipedia.org/wiki/DNS rebinding. Try accessing the router by IP address instead of by hostname.
kpeg7p.ry5.262859.szttplan.com
szttplan.com
daheca.pw
KPegg Photography - KPegg Photography - Wildlife, Nature, and Travel
Blog / Gear List. Exploring the beauty of God’s creation. Yellowstone and Grand Tetons. Wildlife, Animals, Nature, and Travel Photography. Please visit my new site:.
K.SHO
小K 's Computer Life Diary. 會整理ACM CPE 程式解題的筆記。 於資訊安全、雲端、Linux的領域上學習,熱愛軟體開發。 筆記]解決 explorer.exe 記憶體錯誤. 剛剛在開電腦的時候,忽然跑出 explore.exe 記憶體不能written的錯誤訊息。 UVA 12602 程式解題。 UVA]Divide, But Not Quite Conquer! UVA 10190、CPE 10419 程式解題。 UVA 12019、CPE 22801 程式解題。 UVA 10127、CPE 10532 程式解題。 訂閱: 文章 (Atom). 簡單範本 技術提供: Blogger.
How's Kip?
Wednesday, August 3, 2011. I'm writing on the one year anniversary of my diagnosis. Recent studies suggest that while the five year mark is still critical, the first year is now the most important. I was diagnosed on August 4, 2010, so I'm really happy to be at my first big milestone. It's also a milestone for my father, who turns 80 today. Two happy events. Only the inside is different. Love to you all,. I'm composing poems and singing songs. Songs to be played. Words that write histories. July 27, 2011.
Welcome to Keith
Las Vegas, Grand Canyon, Sedona, San Francisco, March 2009. Zoe and Micheals Wedding March 2009. Old Trafford Theatre of Dreams November 2008. Lynne's 50th Birthday in Las Vegas December 2007. Jason's 40th Birthday at Silverstone September 2007. Lake Garda September 2007. Niagara Falls April 2007. New York Skyline April 2007. New York Other Photos April 2007.
NEW KPE Graphics | Magnesium and Zinc Photoengraving | Hot foil Blocks and dies | Embossing Dies - Zinc Dies | Magnesium Dies | Brass Dies | Process Engraving | Photo Enngraving
Magnesium and Zinc Dies. Zinc Dies Magnesium Dies Brass Dies UK and Overseas Service. We manufacture blocks and dies and reproduce fine detail images in zinc, magnesium and brass. We combine traditional methods with modern computer technology to create images in metal and work with printers, signmakers, designers and manufacturing companies to achieve their very specific requirements and. Every plate is individually made and hand finished to each customers requirements. Card Embossing and Debossing.