記一下,免得自己忘了,之前沒看到這篇之前,啃...

我重灌Win 最少....有50次了......(3台NB 當實驗品)

 

Windows 7 Loader reboot

當過BIOS畫面後就是重覆reboot
此時放入Windows 7的安裝片
開機後選擇修復,在命令列輸入

風箏 發表在 痞客邦 留言(0) 人氣()

find XXXX -name "*" -ls 

先找看看

find XXXX -name "*" -delete

刪掉囉


風箏 發表在 痞客邦 留言(0) 人氣()

BMW:全新6-Series外型將令人驚豔

Michael Lo 於 17 hours 之前發表



還在關注5-Series嗎?跟大家借個光,讓6-Series也出來透透氣吧!2009年可說是BMW(寶馬)挨悶棍的一年,面對金融海嘯帶來的衝擊不說,剛好處在產品線汰舊換新的尷尬時期,當主要對手Mercedes-Benz(賓士)都已藉著新產品逐漸走出困境的同時,BMW卻只能繼續埋頭苦幹暫緩享受收割的快樂,還好去年推出的全新7-Series頂得住S-Class與其他豪華車款的猛烈攻勢,否則BMW可就更悶了!

風箏 發表在 痞客邦 留言(0) 人氣()

Ctrl+Up Scroll up one line keeping cursor in view
Ctrl+Down Scroll down one line keeping cursor in view
F4 Toggle focus between active file and Tree View if shown
Alt+Right Position cursor at first not space character of next paragraph
Alt+Left Position cursor at first not space character of current paragraph (if positioned mid-paragraph) or previous paragraph
Alt+Page Up Position cursor beginning of first line in of the display
Alt+Page Down Position cursor beginning of last line in of the display
Alt+'-' *NM Position line with cursor at top of window
Alt+'+' *NM Position line with cursor at bottom of window
Alt+"*" *NM Position line with cursor at center of window
Ctrl+'1' *NM Position the cursor at the end of the previous word
Ctrl+'2' *NM Position the cursor at the end of the next word
Ctrl+F6 Make the next document window active
Ctrl+Shift+F6 Make the previous document window active
*NM : Will Only work on the numeric keypad.

 

Select/Delete/Insert Shortcuts
Ctrl+Left+Shift (or Right) Selects the word preceding (or following) the cursor
Ctrl+Backspace Delete the word preceding the cursor
Ctrl+Delete Delete the word following the cursor
Ctrl+I Insert a literal character at the cursor position
INS Toggle between Insert and Overstrike mode

 

Hex Mode Shortcuts
Ctrl+H Toggle HEX editing mode
Ctrl+D Insert or delete characters in HEX editing mode

 

風箏 發表在 痞客邦 留言(0) 人氣()

說明:

1)以下需要設置的地方均在Settings->Editor...彈出的對話框中。

2)不少命令都可針對當前行或選中的代碼塊,下文簡稱當前行或選中塊。

風箏 發表在 痞客邦 留言(0) 人氣()

本想說去找一些中文的說明,但想想看英文的,比較實在,也比較容易,除非有好的翻譯可以用中文全釋(如果有覺得不錯的,可以跟我說一聲)

 

How to understand the Online Judge answers

Postby enjolras » Wed Feb 02, 2005 2:24 am

How to understand the Online Judge answers

風箏 發表在 痞客邦 留言(0) 人氣()

喊了這麼多年說想玩ACM ,今天終於開始了,希望最少可以一週一題(夠懶吧),不然最少3天一題試看看囉!!

首先第一題,最簡單的100 ,但真不知自己為什麼那麼笨.......SUBMISSIONS 了快50次,才發現不是程式的問題......找了好久...所以....我要加強呀

玩ACM方向也許是對的,但不知自己還有多少時間、精力、腦力可以玩就是了.....如果有人要玩,記得....加油...不一定要問別人,因為別人一定會,要自己弄懂比較難啦.....(這也是訓練自己邏輯、解題的能力)

以下有兩種都是可以的....

########### method 1 ###########

風箏 發表在 痞客邦 留言(0) 人氣()

http://www.cppreference.com/wiki/string/start


風箏 發表在 痞客邦 留言(0) 人氣()

#include <iostream>
using namespace std;

int main() {
    int input = 0;

風箏 發表在 痞客邦 留言(0) 人氣()

「指定運算子」(Assignment operator),到目前為止我們只看過一個指定運算子,也就是=這個運算子,事實上指定運算子還有以下的幾個:

運算子 例子 說明
+= a+= b  a= a + b
-= a-= b a= a - b
*= a*= b a= a * b
/= a/= b a= a / b
%= a%= b a= a % b
&= a&= b a= a & b
|= a|= b a= a | b
^= a^= b a= a ^ b
<<= a<<= b a= a << b
>>= a>>= b a= a >> b

出處:http://caterpillar.onlyfun.net/Gossip/CppGossip/LogicalBitwise.html


風箏 發表在 痞客邦 留言(0) 人氣()