下面是引用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;
}