English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

請各位會c語言的大大~
能教我一下~我想要寫一個用ASCII~
英文字串轉成16進位的程式~~
請問要怎麼寫才能做到?~

例如:
我輸入一個英文字串 "while"
電腦能輸出 ->while的ASCII碼~

2007-10-17 10:16:37 · 1 個解答 · 發問者 星宇 1 in 電腦與網際網路 程式設計

我想要用的是~我能輸入一些字~轉成ASCII碼~~
我不要在程式裡就寫好輸入的字了~~

2007-10-20 07:18:12 · update #1

1 個解答

#include
#include
#include
int main(int argc, char* argv[]){
//=====START=====//
char str[]="while";
int i;
for(i=0;i<(int)strlen(str);i++){
printf("%X\n",str[i]);
}
//=====END=====//
system("PAUSE");
return 0;
}

2007-10-17 15:34:16 · answer #1 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers