返回列表 發帖
  1. #include<iostream>  //引入標頭檔<iostream>in&out stream
  2. #include<cstdlib>   //引入標頭檔<catadlib>
  3. using namespace std; //指定名稱空間為std
  4. int main()    //主函式要執行的程式碼
  5. {
  6.     cout<<"幹"<<endl; //cout-->輸出,endl-->換行
  7.     system("pause") //暫停畫面
  8.     return 0; //回傳0給主控台,告知城市已成功執行      
  9. }
複製代碼

TOP

返回列表