Board logo

標題: 為程式碼加上註解 [打印本頁]

作者: tonyh    時間: 2015-7-2 13:49     標題: 為程式碼加上註解

試為上一個所寫的程式碼加上註解.
作者: 張凱翔    時間: 2015-7-2 14:51

  1. #include<iostream> //引入 <基本輸入輸出> 標頭檔
  2. #include<cstdlib>  //引入 <標準函式庫> 標頭檔
  3. using namespace std;  //指定命名空間為std
  4. int main()   //主函式
  5. {  //執行內容
  6.     cout<<"hello"endl  //輸出hello,換行
  7.     system("pause");  //暫停畫面
  8.     return 0  //回報程式已完成
  9. }
複製代碼

作者: tonyh    時間: 2015-7-3 09:41

  1. #include<iostream>  //引入標頭檔 <iostream>  in & out stream
  2. #include<cstdlib>   //引入標頭檔 <cstdlib>   c standard library
  3. using namespace std;  //指定命名空間為 std
  4. int main()  //主函式
  5. {   //大括號內為主函式所要執行的程式碼
  6.     cout<<"哈囉!哈囉!"<<endl;    //cout -->輸出   endl -->換行
  7.     system("pause");  //暫停畫面
  8.     return 0;   //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 陳德晉    時間: 2015-7-3 09:57

本帖最後由 tonyh 於 2015-7-3 10:10 編輯
  1. #include<iostream> //導入 <基本輸入輸出> 標頭檔
  2. #include<cstdlib>  //導入 <標準函式庫> 標頭檔
  3. using namespace std;  //指定命名空間為std
  4. int main()   //主函式
  5. {  //大括號內為主函式所要執行的程式碼
  6.     cout<<"What the...."<<endl;  //輸出What the....,換行
  7.     system("pause");  //暫停畫面
  8.     return 0;  //回報程式已完成
  9. }
複製代碼

作者: 張健勳    時間: 2015-7-3 09:57

哈哈,沙發是我的!
  1. #include<iostream>     //引入標頭檔<iostream   in& out stream>
  2. #include<cstdlib>      //引入標頭檔<cstdlib>  c standard library
  3. using namespace std;   //指定命名空間 std
  4. int main()             //主函式
  5. {                      //大括號內為主函式所要執行的程式碼
  6.     cout<<"喵"<<endl;  //cout->輸出   endl->換行
  7.     system("pause");   //畫面暫停
  8.     return 0;          //回傳0給主控台告知程式已經成功執行
  9. }                     
複製代碼

作者: 洪煒庭    時間: 2015-7-3 10:00

  1. #include<iostream>  //引入標頭檔 <iostream>  in & out stream
  2. #include<cstdlib>   //引入標頭檔 <cstdlib>   c standard library
  3. using namespace std;  //指定命名空間為 std
  4. int main()  //主函式
  5. {   //大括號內為主函式所要執行的程式碼
  6.     cout<<"哈囉!哈囉!"<<endl;    //cout -->輸出   endl -->換行
  7.     system("pause");  //暫停畫面
  8.     return 0;   //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 徐煒博    時間: 2015-7-3 10:01

  1. #include<iostream>  //引入標頭檔 <iostream>  in & out stream
  2. #include<cstdlib>   //引入標頭檔 <cstdlib>   c standard library
  3. using namespace std;  //指定命名空間為 std
  4. int main()  //主函式
  5. {   //大括號內為主函式所要執行的程式碼
  6.     cout<<"哈囉!哈囉!"<<endl;    //cout -->輸出   endl -->換行
  7.     system("pause");  //暫停畫面
  8.     return 0;   //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 錢建樺    時間: 2015-7-3 10:01

本帖最後由 tonyh 於 2015-7-3 10:10 編輯
  1. #include<iostream>  //引入標頭檔 <iostream>  in & out stream
  2. #include<cstdlib>   //引入標頭檔 <cstdlib>   c standard library
  3. using namespace std;  //指定命名空間為 std
  4. int main()  //主函式
  5. {   //大括號內為主函式所要執行的程式碼
  6.     cout<<"哈囉!哈囉!"<<endl;    //cout -->輸出   endl -->換行
  7.     system("pause");  //暫停畫面
  8.     return 0;   //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 蔡庚霖    時間: 2015-7-3 10:02

  1. [code]#include<iostream>   //引入標頭檔 <iostream>in&out stream
  2. #include<cstdlib>    //引入標頭檔 <cstdlib>cstandard library
  3. using namespace std; //指定命名空間為std
  4. int main()           //主函式
  5. {                    //大括號內為主函式所要執行的程式碼
  6.     cout<<"傑哥不要"<<endl;//cout-->輸出 enld -->換行
  7.     system("pause"); //暫停畫面
  8.     return 0;        //回傳0給主控台,告知城市影成功執行
  9. }
複製代碼

作者: 蔡季樺    時間: 2015-7-3 10:03

  1. #include<iostream>  //引入標頭檔<iostream>
  2. #include<cstdlib> //引入標頭檔<cstdlib>
  3. using namespace std; //指定命名空間為 std
  4. int main() //主函式
  5. { //大括號內為主函式所要執行的程式碼
  6.     cout<<"hello"<<endl; //cout -->輸出   endl -->換行
  7.     system("pause"); //暫停畫面
  8.     return 0; //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 錢建樺    時間: 2015-7-3 10:04

  1. #include<iostream>  //引入標頭檔 <iostream>  in & out stream
  2. #include<cstdlib>   //引入標頭檔 <cstdlib>   c standard library
  3. using namespace std;  //指定命名空間為 std
  4. int main()  //主函式
  5. {   //大括號內為主函式所要執行的程式碼
  6.     cout<<"哈囉!哈囉!"<<endl;    //cout -->輸出   endl -->換行
  7.     system("pause");  //暫停畫面
  8.     return 0;   //回傳 0 給主控台, 告知程式已成功執行
  9. }
複製代碼

作者: 王奕勛    時間: 2015-7-3 10:07

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

作者: 蔡秉宏    時間: 2015-7-3 10:14

  1. #include<iostream> //引入標頭檔<iostream   in& out stream>
  2. #include<cstdlib> //引入標頭檔<cstdlib>  c standard library
  3. using namespace std;//指定命名空間 std
  4. int main()          //主函式
  5. {      //大括號內為主函式所要執行的程式碼
  6.     cout<<"123"<<endl;//cout->輸出   endl->換行
  7.     system("pause"); //畫面暫停
  8.     return 0; //回傳0給主控台告知程式已經成功執行
複製代碼

作者: 蔡秉宏    時間: 2015-7-3 11:29

  1. #include<iostream> //引入標頭檔<iostream   in& out stream>
  2. #include<cstdlib> //引入標頭檔<cstdlib>  c standard library
  3. using namespace std;//指定命名空間 std
  4. int main()          //主函式
  5. {      //大括號內為主函式所要執行的程式碼
  6.     cout<<"123"<<endl;//cout->輸出   endl->換行
  7.     system("pause"); //畫面暫停
  8.     return 0; //回傳0給主控台告知程式已經成功執行
複製代碼





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