DTOJ 2700:hello world 解题报告
- 2017.11.06 第一版 ——由翱翔的逗比w原创
题目信息:
题目描述
输出hello world
输出
hello world
样例输出
hello world
思路:
利用标准输出字符串“hello world”。
注意:
hello world单词需拼写正确,注意字符为英文小写半角
我的代码(C++):
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 cout<<"hello world"; 7 return 0; 8 }
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。
——翱翔的逗比w
时间: 2024-10-08 17:44:31