資源簡介
Visual C++實例精通-光盤源代碼.rar 從第一章到第18章完成版!

代碼片段和文件信息
//引入必須的頭文件
#include?
#include?
#include?
//應用程序入口
int?main(int?argc?char*?argv[])
{
int?nAddend?=?0?nSummand?=?0;
//在控制臺輸出歡迎字符
printf(“Hello?Console!\n-----------\n“);
//輸入加數
char?chTemp?=?0;
while(chTemp?‘0‘?||?chTemp?>?‘9‘)
{
printf(“請輸入加數:\n“);
chTemp?=?getch();
}
printf(“%c\n“?chTemp);
//得到加數
nAddend?=?chTemp?-?‘0‘;
//輸入被加數
chTemp?=?0;
while(chTemp?‘0‘?||?chTemp?>?‘9‘)
{
printf(“請輸入被加數:\n“);
chTemp?=?getch();
}
printf(“%c\n“?chTemp);
nSummand?=?chTemp?-?‘0‘;
//輸出計算結果
printf(“計算結果為:\n%d?+?%d?=?%d\n“?
nAddend?nSummand?nAddend?+?nSummand);
//暫停,直到任意鍵按下
system(“pause“);
//退出主函數,意味著應用程序結束
return?0;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????......R??????4348??2008-02-19?14:19??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\HelloConsole.dsp
????......R???????549??2008-02-19?14:19??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\HelloConsole.dsw
????......R????163936??2008-02-19?14:43??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\HelloConsole.exe
????......R?????53760??2008-03-11?18:27??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\HelloConsole.opt
????......R??????1311??2008-02-19?14:43??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\HelloConsole.plg
????......R???????804??2008-02-19?14:43??Visual?C++實例精通-光盤源代碼\Chapter01\01_HelloConsole\main.cpp
????......R??????3982??2008-02-19?14:40??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\HelloWindows.dsp
????......R???????549??2008-02-19?14:22??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\HelloWindows.dsw
????......R????155744??2008-02-19?14:32??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\HelloWindows.exe
????......R?????53760??2008-02-19?15:19??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\HelloWindows.opt
????......R??????1170??2008-02-19?14:32??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\HelloWindows.plg
????......R???????351??2008-02-19?14:32??Visual?C++實例精通-光盤源代碼\Chapter01\02_HelloWindows\main.cpp
????......R?????35676??2008-02-19?15:33??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.aps
????......R??????1092??2008-02-19?19:15??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.clw
????......R??????2105??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.cpp
????......R??????4213??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.dsp
????......R???????543??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.dsw
????......R????106586??2008-02-19?15:33??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.exe
????......R??????1357??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.h
????......R?????53760??2008-03-11?18:27??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.opt
????......R??????1718??2008-02-19?15:33??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.plg
????......R??????5293??2008-02-19?15:33??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialog.rc
????......R??????4161??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialogDlg.cpp
????......R??????1375??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\MfcDialogDlg.h
????......R??????3633??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\ReadMe.txt
????......R??????1078??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\res\MfcDialog.ico
????......R???????401??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\res\MfcDialog.rc2
????......R???????540??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\Resource.h
????......R???????211??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\StdAfx.cpp
????......R??????1054??2008-02-19?15:24??Visual?C++實例精通-光盤源代碼\Chapter01\03_MfcDialog\StdAfx.h
............此處省略2587個文件信息
評論
共有 條評論