📜  如何在 C++ 代码示例中打印文本

📅  最后修改于: 2022-03-11 14:44:46.712000             🧑  作者: Mango

代码示例1
//typing using namespace std; before the int main will make things easier so that you 
//won't need to type std:: every time you code something.
// For example:

using namespace std;

int main()
{
    cout << "Hello World!";

}