22 条题解
信息
- ID
- 52
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 7
- 标签
- (无)
- 递交数
- 2715
- 已通过
- 610
- 上传者
#include<stdio.h> int main(){ printf("Hello,World!"); return 0; }
本题为语法入门的第一题,主要考察c++语言入门的最基本结构和cout的用法。
按照题目要求,输出的过程中有几点小细节需要注意: 1、输出内容Hello,World!里面的逗号和叹号注意是英文标点符号非中文。 2、大小写字母注意区分,空格注意区分。
参考代码如下(不要抄袭):
#include<iostream>
using namespace std;
int main(){
cout<<"Hello,World!";
}
要写return 0;
#include using namespace std; int main(){ cout<<"Hellow,World"; return 0; } 注意h和w大写。 (请勿抄袭!)
#include using namespace std; int main(){ cout<<"Hello,World!"<<endl; return 0; }
本题主要考察c++语言入门的最基本结构和cout的用法。引用头文件
#include<iostream>
输出程序
cout<<"";
本题为直接输出“Hello,World!
”编写为
cout<<"Hello,World!"
AC CODE
#include <iomstream>//头文件
using namespace std;
int main(){
cout<<"Hello,World!";
return 0;//养成好习惯,main函数最后不要忘记跟 return 0!
}
不用你讲
#include<bits/stdc++.h> using namespace std; int main(){ int i=1,n; cin>>n; while(i<=n) { cout<<i<<" "; i++; } return 0; }
不要乱用,我担心把你气死 但也挺好玩的
#include using namespace std; int main(){ cout<<"Hello,World!"<<endl; return 0; }
#include using namespace std; int main() { cout<<"Hello World"; return 0; }
@include using namespace std; int main() { cout<<"Hollo World"; return 0; }
#include using namespace std; int main() { cout<<"Holle World"; return 0; }