我是初學者 為什麼我在c++程式上打不出 " 這個符號 請問各位要怎麼打出來?? 還有要學完 c++ 需要多久時間??謝囉~@!
2007-07-05 17:28:16 · 2 個解答 · 發問者 菜餅 1 in 電腦與網際網路 ➔ 程式設計
謝謝你們的解答 可是為什麼我打出來是分開的 ' '這個符號 而不是連續的 " 這個符號
2007-07-06 17:48:30 · update #1
妳說妳是打不出來
是指鍵盤打不出來嗎???
妳按鍵盤shift鍵的同時,按雙引號的鍵,這一個鍵在shift鍵的左上角
-------------------------------------------------------------------------------------------
如果是要寫在程式裡要印出來在螢幕上的話
#include
#include
using namespace std;
int main(void)
{
cout<<"\""<
return 0;
}
------------------------------------------------------------------------
在兩個雙引號裡面
加一個由左上到右下的反斜線再加上一個雙引號,如下
"\""
妳可以參考妳書上的"跳脫字元表"
-------------------------------------------------------------------------------------------
每天看書加上打電腦的話
最快1個月
要多看,多想,多打
2007-07-06 06:56:54 · answer #1 · answered by Anonymous · 0⤊ 0⤋
你指的是不是這個?
要加反斜線…
//Power by Visual Studio 2005
#include
#include
int main(int argc, char* argv[]){
//==========START==========//
char *str="This is a \"BOOK\".";
printf("%s\n",str);
//==========END==========//
printf("\n"),system("PAUSE");
return 0;
}
2007-07-05 18:08:00 · answer #2 · answered by Big_John-tw 7 · 0⤊ 0⤋