简单C++编译问题

2025-02-24 04:53:54
推荐回答(4个)
回答1:

#includ末尾是中文符号,然后include 也少打了个E

cout << “Come up and c++ me some time.“;
末尾也是中文的分号

回答2:

iostream>

回答3:

includ改为include
using namespace std;放外面

回答4:

#include
using namespace std;

int main ()
{
cout << "Come up and c++ me some time.";
cout << endl;
cout << "You won't regret it!"< return 0;
}

几处小错误,帮你改了,你试试看看,应该可以了。错误之处就不帮你一一列举了,你对照和你给的程序应该能看出来了,如果有问题可以再联系我。