Board logo

標題: [隨堂測驗] C++ 基本程式架構 [打印本頁]

作者: 鄭繼威    時間: 2022-3-8 22:09     標題: [隨堂測驗] C++ 基本程式架構

本帖最後由 鄭繼威 於 2022-6-29 19:14 編輯


試著把C++的基本架構寫出來
  1. #include<iostream>  //引入input & output基本輸入輸出函式庫
  2. #include<cstdlib>   //引入C Standard Library標準函式庫
  3. using namespace std;    //指定命名空間為std

  4. //主函式
  5. int main()
  6. {
  7.     //你要做的事
  8.     //註解(給人看的不是給電腦看的)
  9.     system("pause");     //讓黑色畫面暫停
  10.     return 0;    //告知主程式完成
  11. }
複製代碼

作者: may    時間: 2022-4-18 19:26

  1. #include<iostream>  //匯入input & output基本輸入輸出函式庫
  2. #include<cstdlib>   //引入C Standard Library標準函式庫
  3. using namespace std; //指定命名空間為std
  4. int main()
  5. {
  6.     cout<<"Hello world"<<endl;
  7.     system("pause"); //讓黑色畫面暫停
  8.     return 0;    //告知主程式完成
  9. }
複製代碼

作者: 李睿宸    時間: 2022-4-18 19:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.    
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

作者: 林劭澧    時間: 2022-4-18 19:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //你要的程式
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 林劭杰    時間: 2022-4-18 19:49

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;  
  4. int main()
  5. {
  6.     //你要做的是
  7.     system("pause");
  8.     return 0;
  9. }
  10. _
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2