刚换了编译器不会用了.. Dev-c++
#include<stdio.h>int main()
{
int a;
scanf("%d",&a);
switch(a)
{
case 1:{printf("hellow word\n");break;}
case 2:{printf("hellow myself\n");break;}
default:{print("bye bye\n");}
}
}
又是一直报出错
D:\Dev-Cpp\mine\Makefile.win [Build Error] [工程3.exe] Error 1
编译器: Default compiler
Building Makefile: "D:\Dev-Cpp\mine\Makefile.win"
执行 make...
make.exe -f "D:\Dev-Cpp\mine\Makefile.win" all
gcc.exe -c 2.c -o 2.o -I"D:/Dev-Cpp/include"
gcc.exe 2.o -o "工程3.exe" -L"D:/Dev-Cpp/lib"
gcc.exe: Internal error: Aborted (program collect2)
Please submit a full bug report.
See <URL:http://www. for instructions.
make.exe: *** [工程3.exe] Error 1
执行结束
我搞不懂我哪里错了