课程
/后端开发
/C++
/C++远征之起航篇
index.cpp: In function 'int main()': index.cpp:27:15: error: 'x' was not declared in this scope cout<
2018-07-12
源自:C++远征之起航篇 4-9
正在回答
index.cpp: In function 'int main()':index.cpp:27:17: error: 'x' was not declared in this scope cout << x <endl;
试了半天才找到你的错误。
这里输出应该是这样的
cout << "变量x是奇数" <<endl;
要记得打双引号,在主函数中没有定义x这个变量的。如果你想用x的话,要用这个格式
myNum::x;
Cocoabeans 提问者
举报
C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华