Board logo

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

作者: 王瑞喻    時間: 2021-2-1 12:52     標題: 我的第一支程式

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

作者: 方黃生    時間: 2021-2-1 14:03

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

作者: 何若晴    時間: 2021-2-1 14:13

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

作者: 王瑞喻    時間: 2021-2-1 14:26

  1. #include<iostream> //輸入輸出功能  工具箱1
  2. #include<cstdlib> //標準函式庫     工具箱2
  3. using namespace std; //叫做std的房間
  4. int main()//主函式
  5. {
  6.     cout<<"你好!!!"<<endl;
  7.     system("pause");//暫停畫面
  8.     return 0;//回傳0
  9. }
  10. //ctrl+A 全選   +C複製  +V貼上
複製代碼

作者: 蔡宜均    時間: 2021-2-1 14:26

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

作者: 莊鈞宸    時間: 2021-2-1 14:26

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

作者: 莊念篪    時間: 2021-2-1 14:26

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

作者: 黃昱凱    時間: 2021-2-1 14: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. }
複製代碼

作者: 李奕廷    時間: 2021-2-1 14:27

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     //cout<<"you......"<<endl;
  9.    // system("pause");
  10.     return 0;
  11. }
複製代碼
回復 1# 王瑞喻
作者: 洪曼崴    時間: 2021-2-1 14:27

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

作者: 張晏滕    時間: 2021-2-1 14:28

  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. }
複製代碼
回復 1# 王瑞喻
作者: 方凱聲    時間: 2021-2-1 14:29

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

作者: 王偉樺    時間: 2021-2-1 14:38

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

作者: 陳仕約    時間: 2021-2-1 14:40

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

作者: 怡璇    時間: 2021-2-1 14:40

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

作者: 李天輝    時間: 2021-2-1 14:43

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

作者: 方凱聲    時間: 2021-2-1 15:21

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"請輸入一整數:";
    cin>>a;
    cout<<"您輸入的數字是"<<a<<endl;
   
    system("pause");
    return 0;
}
[/code][/code]
作者: 方黃生    時間: 2021-2-2 10:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"報上你的成績:";
  8.     cin>>score;
  9.     if(score)
  10.         cout<<"恭喜你及格了"<<endl;               
  11.    }else
  12.    {
  13.        cout<<"不及格~殺"<<endl;  
  14.    }
  15.     system("pause");
  16.    return 0;
  17. }
複製代碼

作者: 方凱聲    時間: 2021-2-2 13:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"報上你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.          cout<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"恭喜你! 不及格!"<<endl;
  15.     }   
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 洪曼崴    時間: 2021-2-2 13:38

  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 in & out stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式
  5. {
  6.     int score;
  7.     cout<<"報上你的成績:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.        cout<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格~斬!"<<endl;
  15.     }
  16.     system("pause");       //讓畫面暫停
  17.     return 0;              //回傳0到主控台,告知該程式已成功執行
  18. }
複製代碼





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