返回列表 發帖

為程式碼加上註解

試為上一個所寫的程式碼加上註解.

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

TOP

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

TOP

本帖最後由 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. }
複製代碼

TOP

哈哈,沙發是我的!
  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. }                     
複製代碼

TOP

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

TOP

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

TOP

本帖最後由 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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

  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

  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給主控台告知程式已經成功執行
複製代碼

TOP

  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給主控台告知程式已經成功執行
複製代碼

TOP

返回列表