6
6
0
0
0
黄依成
中级天翼
中级天翼
错误:
1、错误代码:cout>>"Hello World";
流符反了
应改成:cout<<"Hello World";
2、错误代码:return o;
是0不是o
应改成:return 0;
0
0
0
0
0
周建勋
中级光能
中级光能
行1:没错
行2:没错
行3:无缩进;流符方向反了;Hello,后要有空格;World首字母要大写;
行4:无缩进;return 0的0错了;
cout<<"Hello, World";
return 0;
0
0
0
0
0
0
0
0
陈九林
高级守护
高级守护
#include <iostream> using namespace std; int main() { cout <<"Hello, World!"; return 0; }
0
0
0
0
0
0
0
0
0
0
0
0
李玥仑
中级光能
中级光能
1.
cout<<"Hello,World!";
2.
return 0;
3.
#include<iostream>
using namespace std;
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
包涵宇
中级天翼
中级天翼
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello, World!";
return 0;
}
0
0
0