int x=-5,x=1;这句的意思是逗号表达式?再有就是头文件错了。#include using namespace std;或者#include
#include using namespace std;int x=-5;int main(){ int y; y=x-5; cout<<"y="< return 0;}首先你用的是标准头文件,必须释放命名空间,也就是using namespace std;或者把后面加个.h,非标准,。然后还有你的X赋值只能给一个固定值,你给了两个