返回列表 發帖

我的第一支程式

本帖最後由 tonyh 於 2013-2-16 14:35 編輯
  1. #include<iostream>   //載入基本輸入/輸出工具
  2. #include<cstdlib>    //載入基本函式庫
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hello!"<<endl;
  7.     system("pause");    //讓畫面暫停
  8.     return 0;           //歸零
  9. }
複製代碼

返回列表