看板 Programming 關於我們 聯絡資訊
ofstream filePtro; filePtro.open("Test.txt",ios::out); for(int i=0;i<10;i++) { filePtro<<i<<'\t'; } filePtro.close(); 請問一下,為何上述輸出不是數字1,2,3,4,5,6,7,8,9,10 而是亂碼~thanks -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.132.209.126 ※ 編輯: luckyboy7 來自: 220.132.209.126 (11/19 18:29)
horngsh:你要用filePtro<< (char) i <<'\t'; ?? 59.126.240.23 11/19 19:28
revivalworld:? 60.244.216.32 11/19 19:37
jaw109:The form of data.. 140.127.185.1 11/19 21:26
meltice:這是微軟的秘技 一定是 60.245.81.27 11/20 20:38