【发布时间】:2020-07-06 07:51:26
【问题描述】:
我已经安装了 Cling 内核以便在 Jupiter notebook 中使用 C++ 但是在实现代码之后
#include <iostream>
using namespace std;
int main() {
int a;
a=9;
cout<<a;
return 0;
}
我收到一个错误 ---> error: function definition is not allowed here int main() {
【问题讨论】:
标签: c++ jupyter-notebook anaconda conda cling