在控制台程序中使用MFC类
生活随笔
收集整理的這篇文章主要介紹了
在控制台程序中使用MFC类
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
win7, vc6;新建一個控制臺程序;代碼如下 ;
#include <afx.h> #include <stdio.h>int main() {int lo, hi;CString str;CStdioFile pFile;pFile.Open("test1.txt", CFile::modeWrite |CFile::modeCreate|CFile::typeText);str.Format("%s/n", "Fibonacci sequencee, less than 100 :");printf("%s", (LPCTSTR) str);pFile.WriteString(str);lo = hi = 1;str.Format("%d/n", lo);printf("%s", (LPCTSTR) str);pFile.WriteString(str);while (hi < 100){str.Format("%d/n", hi);printf("%s", (LPCTSTR) str);pFile.WriteString(str);hi = lo + hi;lo = hi - lo;}pFile.Close();return 0; }構(gòu)建;出錯如下;
工程做如下設(shè)置;
好了;
創(chuàng)建文件并寫入內(nèi)容;這是用mfc類做的;
?
總結(jié)
以上是生活随笔為你收集整理的在控制台程序中使用MFC类的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 初次转化max模型为3D Tiles失败
- 下一篇: VC++ COM、ATL开发入门示例