看板 C_and_CPP 關於我們 聯絡資訊
請問大家要怎麼把結果輸出到TXT阿 網路上我google過了,不過試不出來~~ 付上程式碼 #include "stdafx.h" #include "stdlib.h" #include "math.h" int _tmain(int argc, _TCHAR* argv[]) { double amount; double principal; double rate; long int time; printf("請輸入你的本金:"); scanf_s("%lf",&principal); printf("請輸入你的利率(年利率月利率皆可):"); scanf_s("%lf",&rate); printf("請輸入你的期數:"); scanf_s("%d",&time); amount = principal*pow(1.0+rate, time); printf("%d期後你所得到的金額是%.2f\n",time,amount); system("pause"); return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 122.117.40.80
QQ29:你附的跟輸出到txt有啥關係? 03/13 21:23
QQ29:http://tinyurl.com/n37ru4 03/13 21:25
stonehomelaa:很簡單的方式是打指令 執行檔 > 文字檔 03/13 21:28
tropical72:他的意思應該是要使用者所有的輸入及輸出狀況, 03/13 21:28
tropical72:全都輸出到一個 txt 檔案, 當作是log 03/13 21:28
fireslayer:恩....就是說使用者執行程式完了以後可以在TXT上看到 03/13 21:33
fireslayer:附程式碼是想說要加在哪邊,先謝謝大家 03/13 21:34
fireslayer:QQ29給的是C++的,有沒有純C的可以用?? 03/13 21:36
adks3489:用*FILE 03/13 21:40
adks3489:http://tinyurl.com/yfru2w8 03/13 21:41
adks3489:這有段簡單的Code http://codepad.org/nKhm6bBz 寫不好請 03/13 21:46
adks3489:見諒 03/13 21:46
james732:請google搜尋fopen, fscanf, fprintf, fclose等函式 03/13 21:47
Dannvix:freopen("result.txt", "w", stdout); 03/13 22:26