【Level 0】输出
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
Description
C++ 以 main 函数作为执行的入口,对于一个常见的最简单的可运行程序,如下所示
int main() {
}
虽然这个程序可以运行,但由于没有任何内容,因此运行之后也不会产生任何结果。
我们从输出开始认识 C++
C++ 使用 cout
输出内容到控制台,假设要输出 Hello, world
,其语句如下
std::cout << "Hello, world" << std::endl;
其中的 std::endl
可以简单理解为一个换行符。把它加到 main 函数里,则有
int main() {
std::cout << "Hello, world" << std::endl;
}
但此时程序并不能运行,这是由于 cout
需要引入头文件 <iostream>
,引用方式如下
#include <iostream>
int main() {
std::cout << "Hello, world" << std::endl;
}
这样就可以进行简单的输出,需要注意的是, "Hello, world"
与 std::endl
都是输出的内容,因此,如果有更多的内容需要输出,只需要按照同样的写法添加即可,如
std::cout << "Hello" << ", world! " << 123.456 << std::endl << (12+5) << std::endl;
另外,我们通常所见的 using namespace std
,是为了简化写法
#include <iostream>
using namespace std;
int main() {
cout << "Hello, world" << endl;
}
Format
Input
本题没有输入
Output
输出一行字符串,其内容为 Hello, algorithm!
Notes
该 OJ 有自测功能,你可以点击右上角进入
C++入门
- Status
- Done
- Rule
- IOI
- Problem
- 16
- Start at
- 2024-9-3 0:00
- End at
- 2024-11-25 8:00
- Duration
- 2000 hour(s)
- Host
- Partic.
- 112