我有窗口8和我的代碼開發的C++ ..但我得到了一些錯誤..kindly幫我刪除它們C++代碼不正確編譯
代碼是:
#include <iostream>
#include<conio.h>
using namespace std;
main()
{
int AmerAge, AmaraAge;
cout<<"please enter AmerAge";
cin<<AmerAge;
cout<<"please enter AmaraAge";
cin<<AmaraAge;
if(AmerAge>AmaraAge)
cout<<"Amer is older than amara";
}
而且編譯錯誤是
52 0 c:\ program files(x86)\ dev-cpp \ mingw32 \ lib \ gcc \ mingw32 \ 4.8.1 \ include \ C++ \ string在c:\ program files中包含的文件(86)\ DEV-CPP \的mingw32 \ lib中\ GCC \的mingw32 \ 4.8.1 \包括\ C++ \串
shouldnot的main()與某些返回類型? – 2014-11-25 07:36:19
首先,'conio.h'不是C++頭文件,你永遠不會使用它。而你的錯誤信息是毫無意義的。 – 2014-11-25 07:36:20
最有可能'#include'是問題所在。去掉它。 –
2014-11-25 07:36:29