竞赛
考级
#include<iostream> int main(){ std::cout << "Hello world"; }
YuQing1919
#include<bits/stdc++.h> using namespace std; int main(){ cout<<"Hello world"; }
Lightky
作者的话: 恭喜你进入C++的世界!这是你的第一步! ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 分析 > 题目:作为你入门第一个程序,请输出"Hello world"。 思路 在C++这门语言中,输出需要这么写: 所以,我们加上学过的C++基础框架,就可以很轻松地做出这道题目。 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 代码 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024年09月08日 版本1
一只Merry
在我做第一个程序的时候你在哪里???
万物之初
逍遥骇好=&
这道题太难了,谁会啊!
西域春.
别问我为什么20行有一大堆废话
༺ཌༀTN黑客ༀད༻
#include<iostream> using namespace std; int main(){ cout<<"Hello world"<<endl; return 0; }
太极宗师
礼堂钉针
潜龙暗虎
#include<iostream> using namespace std; int main(){ cout<<"Hello world "; return 0; }
(≧▽≦*)😅
133****6372
zsy
C++ #include<bits/stdc++.h> using namespace std; int main(){ cout<<"Hello world"; return 0; } Python print("Hello world");
刺客伍六七
#include<iostream> using namespace std; int main(){ int a[110][110],b[110][110]; int n,m; cin>>n>>m; for(int i = 1;i<=n;i++){ for(int j = 1;j<=m;j++){ cin>>a[i][j]; } } for(int i = 1;i<=n;i++){ for(int j = 1;j<=m;j++){ cin>>b[i][j]; } } for(int i = 1;i<=n;i++){ for(int j = 1;j<=m;j++){ cout<<a[i][j]+b[i][j]<<" "; } cout<<endl; } return 0; }
猫四月
#include <iostream> using namespace std; int main() { cout<<"Hello world"; }
print("Hello world");
151****9879
6.
#include<iostream> using namespace std; int main(){ cout<<"Hello world"; return 0; }
闯思得
共60条