C++的输出

一个空程序

#include <bits/stdc++.h>
using namespace std;
int main()
{
    return 0;
}

输出 Hello World! 的程序

#include <bits/stdc++.h>
using namespace std;
int main()
{
    cout << "Hello World!";
    return 0;
}
  1. C++的输出