跳转至内容

C++ 编程/示例/显示字符串

来自维基文库,一个开放世界的开放书籍
// This program just displays a string and exits
#include <iostream>
 
int main()
{
  std::cout << "Hello World!";
  std::cout << std::endl;

  return 0;
}
华夏公益教科书