返回列表 發帖

我的第一支程式

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

[code#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello"<<endl;
    system("pause");
    return 0;
}][/code]

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表