Board logo

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

作者: 陳育霖    時間: 2023-8-26 08:54     標題: 我的第一支程式

在螢幕上顯示 hello 字樣.
  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  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. }
複製代碼

作者: 陳育霖    時間: 2023-8-26 20:51

  1. #include<iostream> //基本輸入輸出標頭檔
  2. #include<cstdlib> //c語言 std = standard 標準的 lib = library 函式庫
  3. using namespace std; //使用命名空間為std
  4. int main() //主程式
  5. {
  6.     cout << "hello" << endl << "你好" << endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 黃子瑞    時間: 2023-8-26 20:52

本帖最後由 黃子瑞 於 2023-10-25 21:22 編輯
  1.                     #include<iostream>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  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. }  
複製代碼

作者: 蘇巳權    時間: 2023-8-26 20:53

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

作者: 楊洺杰    時間: 2023-8-26 20:53

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

作者: 劉子綾    時間: 2023-8-26 20:53

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

作者: 王亭婷    時間: 2023-8-26 20:53

#include<iostream>//引入
#include<cstdlib>//c語言 std=standard 標準的 lib=library
using namespace std;//使用命名空間為std
int main()//主程式
{
    cout<<"哈囉"<< endl <<"你好"<<endl;
    system("pause");
    return 0;
}
作者: 王亭婷    時間: 2023-8-26 20:54

  1. #include<iostream>//引入
  2. #include<cstdlib>//c語言 std=standard 標準的 lib=library
  3. using namespace std;//使用命名空間為std
  4. int main()//主程式
  5. {
  6.     cout<<"哈囉"<< endl <<"你好"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
  10.    
複製代碼

作者: 黃詠婕    時間: 2023-8-26 20:56

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

作者: 沈思叡    時間: 2023-8-26 20:56

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

作者: 陳品瑞    時間: 2023-8-26 21:00

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

作者: 張淙鈞    時間: 2023-8-26 21:01

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

作者: 謝崇亘    時間: 2023-8-26 21:02

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

作者: 林靖庭    時間: 2023-8-26 21:02

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

作者: 詠綺    時間: 2023-9-8 17:27

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

作者: 李冠霖    時間: 2023-10-5 19:54

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

作者: 朱奕祈    時間: 2023-11-4 09:21

  1. #include<iostream>  //引入 iuput & ouput <基本輸入輸出>標頭檔
  2. #include<cstdlib>   //引入 <標準函式庫>標頭檔 c standar library
  3. using namespace std;    //指定命名空間為std
  4. int main()    //主函式
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;   //回傳0到主控台,告知該已成功執行
  9. }
複製代碼

作者: 陳宥澄    時間: 2023-11-11 20:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int n=0,y,x,z;
  8.     cout << "請輸入要從幾開始加: ";
  9.     cin >> y;
  10.     cout << "請輸入要加到幾:";
  11.     cin >> x;
  12.     cout << "請輸入要每次要加幾: ";
  13.     cin >> z;
  14.     for(int i=y; i<=x; i=i+z)
  15.     {
  16.          n = n+i;
  17.     }
  18.     cout << y << "加到" << x << "的" << z <<"倍數總和為" << n << "\n";
  19.     goto re;   
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼





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