这个程序哪里有问题啊
没写命名空间
using namespace std;
#include <iostream> using namespace std; int main(){ cout << "Hello world"; return 0; //我不建议你用void }
#include "iostream" //印象中好像不用 .h ,具体可以试试using namespace std; //有这个才能使用cin跟cout
int main{...}