返回列表 發帖
本帖最後由 鄭繼威 於 2022-7-9 14:15 編輯
  1. #include<iostream>  //IO=input&output 引入輸入輸出串流函式庫
  2. #include<cstdlib>   //C standard library 引入C標準函式庫
  3. using namespace std;    //指定命名空間為std

  4. //主程式
  5. int main(){
  6.     //你要做的事
  7.     //cout輸出  <<串接符號(當方法,變數,字串要一起使用時) endl 換行
  8.     cout<<"hello world1"<<endl;
  9.     cout<<"hello world2"<<endl;
  10.    
  11.     system("pause");   //讓黑色畫面暫停
  12.     return 0;   //告知主程式已完成
  13. }
複製代碼

TOP

返回列表