编程论坛
注册
登录
编程论坛
→
C++教室
请问各位大神,这个有什么错
黄鹏宇
发布于 2019-10-13 21:18, 1984 次点击
#include <iostream>
#include <cstdilb>
using namespace std;
int main() {
cout<<"hallo world"<<endl
return 0
}
2 回复
#2
uouo99
2019-10-13 21:55
下面这两句后面要加分号作为语句的结尾。
cout << "hallo world" << endl
;
return 0
;
#3
黄鹏宇
2019-10-14 06:32
谢谢
1