#include using namespace std; int main() { cout << "hello" << endl; return 0; } #include 预处理器指令 iostream中包含输入输出函数 using namespace std; 引入 标准命名空间 不引入的话 std::cout << "hello" << std::endl; g++ -o hello hello.cpp