按照教授的说明进行操作后,我在安装c ++编译器时遇到麻烦,不确定不确定是否正确安装了所有内容。
当编译器显示错误时,它不显示该行,仅显示问题,如果有多个问题,我也不知道会发生什么。可以看到发生问题的那一行吗?
我正在使用MingW运行代码。作为工具链,我使用MinGW GCC和Current Builder CDT内部版本。
此代码可以正常编译吗?权限被拒绝,或者该工具说什么也没建。那么,我会正常接收输出吗?
#include <iostream>
using namespace std;
using std::cout;
using std::endl;
using std::cin;
int main() {
int a = 100;
do
{
cin >> a;
if(a < 0)
cout << "negativ" << endl;
else if (a > 0)
cout << "positiv" << endl;
else
cout << "null" << endl;
}while( a != 0);
return 0;
}
而且,有时我会收到此错误。
C:/Program Files (x86)/mingw-w64/i686-7.1.0-posix-dwarf-rt_v5-
rev2/mingw32/bin/../lib/gcc/i686-w64-mingw32/7.1.0/../../../../i686-w64-
mingw32/bin/ld.exe: cannot open output file Uebungsblatt_4V1.exe: Permission
denied
strong textcollect2.exe: error: ld returned 1 exit status
`