C++ 入門指南 4.01
練習 1.3 參考程式 - 練習修改程式
#include <iostream> int main(void) { std::string m("There is no spoon."); std::cout << std::endl << m << std::endl << std::endl << std::endl; return 0; } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:exercise0103.cxx 編譯:g++ exercise0103.cxx 執行:./a.out 功能:C++入門指南單元一的練習 作者:張凱慶 */