2007年1月19日 星期五

char 二維陣列所構成的string

撰寫轉檔程式
需要做歌手與性別的對應

鍾志均 陳琍娟
如果要用c language表示 要怎麼表示
char *str1 = "鍾志均";
char *str2 = "陳琍娟";
參考(http://www.fg.tp.edu.tw/~janet/fanglan/download/getfile.php?down=1&fileid=204)
得知可以用二維陣列方式表達
char str3[2][7] = { "鍾志均" , "陳琍娟" };
像我需要對多位歌手做比對
需要將所有歌手放入陣列當中
在利用迴圈觀念去做比對
已達到我判斷性別的目的

透過Facebook分享

2007年1月18日 星期四

Bluetooth Network: BlipNet

Bluetooth Network: BlipNet: "BlipNet



BlipNet is a Bluetooth based access system to be used by operators, enterprises and application developers. With BlipNet it is possible to extend business opportunities by delivering information and services to users of mobile phones, PDA's and other devices."

透過Facebook分享

2007年1月16日 星期二

轉換程式的前提

由於檔案放在xp上
又需要在ubuntu上寫程式

所以需要轉碼

利用dir/b > test.txt
將我所需要的檔案名稱作輸出的動作 輸出到text.txt
在利用ultraedit的 unicode/utf-8轉utf-8(unicode編輯)

這樣子
我在ubuntu下就可以正常讀取中文字

透過Facebook分享

2007年1月14日 星期日

設定vim

打算用vim作為我開發轉檔程式的開發工具
那就開始慢慢對vim要有更深的熟度嚕

今天學到vim部份設定

在home下 編輯.vimrc
  • set nu : 使用vim的時候 可以有顯示行數的功能
  • set ai : 有自動縮排的功能
  • set shiftwidth=3 : 設定縮排格數為3
  • iaabr pr printf : 提供簡寫功能 讓你輸入完pr後 Enter<- 就會變成printf

透過Facebook分享