Board logo

標題: 我的標準程式碼註解 [打印本頁]

作者: 游東祥    時間: 2013-8-13 09:51     標題: 我的標準程式碼註解

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {

  6.     //-----------------
  7.     // 顯示 hello 文字
  8.     //-----------------
  9.     cout << "hello";
  10.    
  11.     system("pause");       //讓程式暫停
  12.     return 0;              //程式執行正確
  13. }
複製代碼

作者: 徐義翔    時間: 2013-8-13 10:00

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. {
  6.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  7.     system("pause");            //讓程式暫停   
  8.     return 0;                   //告訴程式執行正確
  9. }
  10.                                                 
複製代碼

作者: 黃崇維    時間: 2013-8-13 10:00

  1. #include<iostream>          //引認輸出輸入的指令
  2. #include<cstdlib>           //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名空間
  4. int main()                  //程式從" main "開始
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");        //程式暫停
  8.     return 0;               //回報程式運作正常
  9. }
複製代碼

作者: 徐義翔    時間: 2013-8-13 10:01

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. {
  6.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  7.     system("pause");            //讓程式暫停   
  8.     return 0;                   //告訴程式執行正確
  9. }
  10.                                                 
複製代碼

作者: 蔡凱益    時間: 2013-8-13 10:01

  1. #include <iostream>  //引入輸出.輸入的指令
  2. #include <cstdlib>   //引入c的標準函式
  3. using namespace std; //使用標準函式庫命名
  4. int main()           //程式從"main"執行
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");  //讓程式暫停
  8.     return 0;         //讓程式確認證確
  9. }
複製代碼

作者: 陳寧莉    時間: 2013-8-13 10:01

  1. #include <iostream>         //引入輸出.入的指令
  2. #include <cstdlib>          //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名
  4. int main()                  //程式從"main"執行
  5. {
  6.     cout<<"令人覺得毛毛的照片"<<endl;
  7.     system("pause");        //讓程式暫停
  8.     return 0;               //告訴程式執行正確
  9. }
複製代碼

作者: 蘇昱安    時間: 2013-8-13 10:01

  1. #include <iostream>    //引用輸出輸入
  2. #include <cstdlib>     //引用c的表準涵式
  3. using namespace std;   //使用標準涵式命名空間
  4. int main()              //程式從main開始
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");  //程式暫停
  8.     return 0;        //運作正常
  9.     }
複製代碼

作者: 蔡秉修    時間: 2013-8-13 10:02

  1. #include <iostream> //引入輸出輸入的程式碼
  2. #include <cstdlib>  //使用c的標準函式庫
  3. using namespace std;//使用命名空間

  4. int main()          //開始執行程式
  5. {
  6.     cout << "hello" << endl;  
  7.     system("pause");//程式暫停
  8.     return 0;       //告訴程式運作正確
  9. }
複製代碼

作者: 張峻瑋    時間: 2013-8-13 10:02

  1. #include <iostream>     //引入輸出輸入的指令
  2. #include <cstdlib>      //引入c的標準函式
  3. using namespace std;    //使用標準函式庫命名空間

  4. int main()              //程式從"main"開始執行
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;           //告訴程式執行正確
  9. }
複製代碼

作者: 徐義翔    時間: 2013-8-13 10:03

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. {
  6.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  7.     system("pause");            //讓程式暫停   
  8.     return 0;                   //告訴程式執行正確
  9. }
  10.                                                 
複製代碼

作者: 林以璿    時間: 2013-8-13 10:04

  1. #include<iostream>              //引入輸出輸入
  2. #include<cstdlib>?              //c 的標準函式
  3. using namespace std;            //名稱空間
  4. int main ()                     //從始開始執行
  5. {
  6. cout<<"hello"<<endl;
  7. system("pause");                //程式暫停
  8. return 0;                       //運作正常
  9. }
複製代碼

作者: 吳宗桓    時間: 2013-8-13 10:07

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間

  4. int main()                           //程式從"main"開始執行

  5. {   
  6. cout <<"hello jason 吳宗桓"<<endl;  
  7. system("pause");                   //讓程式暫停
  8. return 0;                         //讓程式確認正確
  9. }
複製代碼

作者: 施伯叡    時間: 2013-8-14 08:57

  1. #include <iostream>     //引入輸出輸入
  2. #include <cstdlib>      //使用C的標準函式庫
  3. using namespace std;    //使用命名空間

  4. int main()              //開始執行程式
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;           //告訴程式執行正常
  9. }
複製代碼

作者: 李恆    時間: 2013-8-14 08:59

  1. #include <iostream>        //引入輸出輸入的指令

  2. #include <cstdlib>         //引入C的標準函式

  3. using namespace std;       //使用標準函式庫命名空間



  4. int main()                 //程式從 "main" 開始執行

  5. {



  6.     //-----------------

  7.     // 顯示 hello 文字

  8.     //-----------------

  9.     cout << "hello";

  10.    

  11.     system("pause");       //讓程式暫停

  12.     return 0;              //程式執行正確

  13. }
複製代碼

作者: 柯璟廷    時間: 2013-8-14 09:00

#include <iostream>        //引入輸出輸入的指令

#include <cstdlib>         //引入C的標準函式

using namespace std;       //使用標準函式庫命名空間



int main()                 //程式從 "main" 開始執行

{



    //-----------------

    // 顯示 hello 文字

    //-----------------

    cout << "hello";

   

    system("pause");       //讓程式暫停

    return 0;              //程式執行正確

}
作者: 張彥承    時間: 2013-8-14 09:06

  1. #include <iostream>        //      引入輸出輸入的指令
  2. #include <cstdlib>         //      引入c'S STANDARD  函式
  3. using namespace std;       //   使用標準函式庫命名
  4. int main ()                //  程式從"MAIN"開始進行
  5. {
  6.     cout<<"I never feel nervous trying,I only fear nervous dying<<"<<endl;
  7.     system("pause");//使程式暫停
  8.     return 0;             //   回報程式運作正確
  9. }
複製代碼

作者: 周雍程    時間: 2013-8-14 09:15

  1. #include <iostream>     //引入輸出輸入引入
  2. #include <cstdlib>      //引入C的標準函式
  3. using namespace std;    //使用標準函式命名空間

  4. int main()              //開始執行
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;           //程式執行正確
  9. }
複製代碼

作者: 林以諾    時間: 2013-8-14 09:16

  1. #include<iostream>              //引入輸出輸入
  2. #include<cstdlib>?              //c 的標準函式
  3. using namespace std;            //名稱空間
  4. int main ()                     //從始開始執行
  5. {
  6. cout<<"hello"<<endl;
  7. system("pause");                //程式暫停
  8. return 0;                       //運作正常
  9. }
複製代碼

作者: 蔡凱益    時間: 2013-8-14 09:16

  1. include <iostream>             //引入輸出入指令

  2. #include <cstdlib>              //引入c語言標準函數

  3. using namespace std;            //使用標準函式庫命名空間



  4. int main()                      //程式從"main'開始執行



  5. {

  6.     cout<<"hello "<<endl;

  7.     system("pause");            //讓程式暫停   

  8.     return 0;                   //告訴程式執行正確
複製代碼

作者: 薛景謙    時間: 2013-8-14 09:16

  1. #include<iostream>            //引入輸出輸入
  2. #include<cstdlib>             //使用C的標準函式庫
  3. using namespace std;          //使用命名空間

  4. int main()                    //開始執行程式
  5. {
  6.    
  7.   
  8.     system("pause");          //程式暫停
  9.     return 0;                 // 告訴程式運作正確
  10. }
複製代碼

作者: 周雍程    時間: 2013-8-14 09:16

  1. #include <iostream>     //引入輸出輸入
  2. #include <cstdlib>      //引入C的標準函式
  3. using namespace std;    //使用標準函式命名空間

  4. int main()              //開始執行
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;           //程式執行正確
  9. }
複製代碼

作者: 張郁庭    時間: 2013-8-14 09:28

回復 20# 薛景謙
  1. #include <iostream>          // 引入輸出輸入
  2. #include <cstdlib>           //C的標準函式
  3. using namespace std;         // 使用標準函式庫命名空間
  4. int main()                   //要執行的程式碼
  5. {
  6.         cout<<"hello"<<endl; //顯示hellow
  7.         system("pause");     //暫停
  8.         return 0;            //告訴電腦程式完成
  9. }
複製代碼

作者: 張郁偵    時間: 2013-8-14 10:28

  1. #include <iostream>    //引入輸出輸入的指令
  2. #include <cstdlib>     //引入c的標準函式
  3. using namespace std;   //引入c的標準函式庫命名空間
  4. int main()             //程式從開始執行

  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;        //回報程式運作正確
  9. }
複製代碼





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