跳至內容

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

來自華夏公益教科書,一個開放世界中的開放書籍
// This program just displays a string and exits, variation 2
#include <iostream>
 
int main() {
  std::cout << "Hello World!";
  std::cout << std::endl;

  return 0;
}
華夏公益教科書