作者fireslayer (fireslayer)
看板C_and_CPP
標題[語法] 請問大家要怎麼把結果輸出到TXT阿<C>
時間Sat Mar 13 21:23:15 2010
請問大家要怎麼把結果輸出到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
推 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:見諒 03/13 21:46
→ james732:請google搜尋fopen, fscanf, fprintf, fclose等函式 03/13 21:47
推 Dannvix:freopen("result.txt", "w", stdout); 03/13 22:26