c++程序结果如何导出到硬盘?
//将一张一元纸币兑换成一分、二分和五分的硬币,假定每种至少一枚,计算共有多少种兑换法.#include <iostream.h>void main(){ int a,b,c,count=0; for(a=1;a<100;a++) for(b=1;b<100;b++) for(c=1;c<100;c++) if((a+2*b+5*c)==100) { count++; cout<<"一分"<<a<<"个,"<<"二分"<<b<<"个,"<<"五分"<<c<<"个,"<<endl; } cout<<"Counts:"<<count<<endl;}如何把上面代码的结果通过文本文件导出,DOS窗口显示不完。