返回列表 發帖
  1. //標頭檔
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. //主程式
  6. int main()
  7. {
  8.    cout <<" 1+2=5 " <<endl;
  9.    system("pause");
  10.    return 0;   
  11. }
複製代碼
May

TOP

  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. }
複製代碼
May

TOP

返回列表