跳轉至內容

C++ 程式設計/示例/顯示字串

來自維基文庫,一個開放世界的開放書籍
// This program just displays a string and exits
#include <iostream>
 
int main()
{
  std::cout << "Hello World!";
  std::cout << std::endl;

  return 0;
}
華夏公益教科書