22 条题解
信息
- ID
- 52
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 7
- 标签
- (无)
- 递交数
- 2248
- 已通过
- 499
- 上传者
#include<stdio.h> int main(){ printf("Hello,World!"); return 0; }
#include using namespace std; int main(){ cout<<"Hello,World!"; }
#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; }