Board logo

標題: 我的第一支程式 [打印本頁]

作者: tonyh    時間: 2015-1-30 10:08     標題: 我的第一支程式

本帖最後由 tonyh 於 2015-1-30 10:30 編輯

在螢幕上顯示 hello 字樣.
  1. #include<iostream>  //引入標頭檔 <基本輸入輸出>  in & out 串流  
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫>  c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main()   //主函式開始
  5. {            //主函式的內容
  6.     cout<<"hello"<<endl;   //利用cout進行輸出, endl代表換行
  7.     system("pause");   //暫停
  8.     return 0;          //回傳0到主控台告訴電腦本程式已成功執行
  9. }
複製代碼

作者: 涂幸宸    時間: 2015-1-30 10:31

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

作者: 陳思惟    時間: 2015-1-30 10:31

回復 4# tonyh
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 王翔    時間: 2015-1-30 10:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.   cout<<"hello"<<endl;  
  7.     system("pause");
  8.     return 0;
  9. }   
複製代碼

作者: 沈子耕    時間: 2015-1-30 10:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.           cout<<"hello world"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 趙弘揚    時間: 2015-1-30 10:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       cout<<"hello"<<endl;
  7.       system("pause");
  8.       return 0;
  9. }
複製代碼

作者: 許睿霖    時間: 2015-1-30 10:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"Hi"<<endl;
  7.    system("pause");     
  8.    return 0;
  9. }
複製代碼

作者: 吳翊民    時間: 2015-1-30 10:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;  
  9. }
複製代碼

作者: 翁證翔    時間: 2015-1-30 10:32

[code#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello"<<endl;
    system("pause");
    return 0;
}][/code]
作者: 許育樺    時間: 2015-1-30 10:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;   
  9. }
複製代碼

作者: 施正心    時間: 2015-1-30 10:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");        
  8.     return 0;
  9. }
複製代碼

作者: 陳鈺晟    時間: 2015-1-30 10:33     標題: RE: 我的第一支程式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.        cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;   
  9. }
複製代碼

作者: 黃璽安    時間: 2015-1-30 10:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"Hi"<<endl;
  7.    system("pause");     
  8.    return 0;
  9. }
複製代碼

作者: 吳承勳    時間: 2015-1-30 10:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 鍾奕帆    時間: 2015-1-30 10:35

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.   cout<<"hello"<<endl;  
  7.     system("pause");
  8.     return 0;
  9. }  
複製代碼

作者: 許博竣    時間: 2015-1-30 10:35

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }        
複製代碼

作者: 陳彥彰    時間: 2015-1-30 10:36

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

作者: 曾聖祐    時間: 2015-1-30 10:37

  1. #include<iostream>  //引入標頭檔 <基本輸入輸出>  in & out 串流  
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫>  c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main()   //主函式開始
  5. {            //主函式的內容
  6.     cout<<"hello"<<endl;   //利用cout進行輸出, endl代表換行
  7.     system("pause");   //暫停
  8.     return 0;          //回傳0到主控台告訴電腦本程式已成功執行
  9. }
複製代碼

作者: 顏宇杰    時間: 2015-1-30 10:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"shit"<<endl;
  7.    system("pause");
  8.    return 0;   
  9. }      
複製代碼

作者: 王御丞    時間: 2015-1-30 10:38

  1. #include<iostream>//前置處理指令<標頭檔>含括動作,寫程式的準備動作
  2. #include<cstdlib> //前置處理指令<標頭檔>含括動作,寫程式的準備動作
  3. using namespace std;//   名稱空間
  4. int main()//要執行程式碼
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 朱霈芸    時間: 2015-1-30 10:38

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");   
  8.     return 0;
  9. }
複製代碼

作者: 曾筱文    時間: 2015-1-30 10:40

  1. #include<iostream>//引入標頭檔<iostream>  in&out串流
  2. #include<cstdlib>//引入標頭檔<基本函數庫> c standard library
  3. using namespace std; //使用命名空間std
  4. int main()    //主函式開始
  5. {             //主函式的內容
  6.     cout<<"hello"<<endl; //輸出hello ,endl代表換行
  7.     system("pause");   //暫停
  8.     return 0;          //回傳0到主控台告訴電腦本程式已成功執行
  9. }
複製代碼

作者: 王御丞    時間: 2015-1-30 11:48

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //基本輸入輸出
  7.     int   a;   
  8.     cin >>a;   
  9.     cout<< "您輸入的數字是"<<a<<endl;
  10.   
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 黃璽安    時間: 2015-2-1 10:23

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2015谷哥人冬令營"<<endl;
  7.     cout<<"學生:黃璽安"<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼





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