下面是引用p2301891于2007-12-22 19:22发表的 :
请问一下!我下载DEV-C++如下的....
Dev-C++ 5.0 beta 9.2 (4.9.9.2) (9.0 MB) with Mingw/GCC 3.4.2
Dev-C++ version 4.9.9.2, includes full Mingw compiler system with GCC 3.4.2 and GDB 5.2.1 See NEWS.txt for changes in this release.
可是我输入如下程式码
#include <iostream.h>
int maiN()
{
int a=0x13,b=013,c=13;
cout <<"测试1"<< a << endl;
cout <<"测试2"<< b << endl;
cout <<"测试3"<< c << endl;
return 0;
}
然后按F9或F10会出现原始码无法执行....请问问题出在哪里呢~~
#include
<iostream>using namespace std;int mai
n()
{
int a=0x13,b=013,c=13;
cout <<"测试1"<< a << endl;
cout <<"测试2"<< b << endl;
cout <<"测试3"<< c << endl;
return 0;
}