Board logo

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

作者: 鄭繼威    時間: 2022-3-1 22:50     標題: 我的第一支程式

本帖最後由 鄭繼威 於 2022-7-16 14:19 編輯

在螢幕上顯示 hello 字樣.
  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式
  5. {
  6.     //你要做的事
  7.     cout<<"hello"<<endl;   //cout輸出  endl換行
  8.     system("pause");       //讓畫面暫停
  9.     return 0;              //回傳0到主控台,告知該程式已成功執行
  10. }
複製代碼
//        ()小括號
//        []中括號
//        {}大括號
作者: 鄭繼威    時間: 2022-3-2 20:32

  1. #include<iostream>  //基本輸入輸出函式庫
  2. #include<cstdlib>   //c 標準函式庫
  3. using namespace std;    //指定命名空間為std

  4. int main()
  5. {
  6.     cout<<"hello"<<endl;  //cout 輸出  <<串接符號  endl= end line 換行
  7.     system("pause");      //讓黑色畫面暫停
  8.     return 0;
  9. }
複製代碼

作者: 黃柏青    時間: 2022-3-2 20:33

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

作者: 黃裕恩    時間: 2022-3-2 20: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. }
複製代碼

作者: 陳牧謙    時間: 2022-3-2 20: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. }
複製代碼

作者: 閻敬凭    時間: 2022-3-2 20: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. }
複製代碼

作者: 李彣    時間: 2022-3-2 20: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. }
複製代碼

作者: 齊振睿    時間: 2022-3-2 20:34

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

作者: 黃裕恩    時間: 2022-3-9 21:12

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    string name="黃裕恩", school="新上國小";
    int age=9;
    float h=140.1, w=38.5;
    cout<<"我的大名: "<<name<<endl;
    cout<<"就讀: "<<school<<endl;
    cout<<"今年: "<<age<<" 歲"<<endl;
    cout<<"身高: "<<h<<" 公分"<<endl;
    cout<<"體重: "<<w<<" 公斤"<<endl;
    system("pause");
    return 0;   
}

作者: 林劭澧    時間: 2022-3-14 20:14

本帖最後由 林劭澧 於 2022-3-14 20:25 編輯
  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. }         
複製代碼

作者: 林劭杰    時間: 2022-3-14 20:22

本帖最後由 林劭杰 於 2022-3-14 20:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     cout<<"hallo world"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 鄭繼威    時間: 2022-4-22 20:27

  1. #include<iostream>  //引入基本輸入輸出函式庫 input&output stream
  2. #include<cstdlib>   //引入C標準函式庫 C standard libary
  3. using namespace std;                  //指定命名空間為std
  4. //主函式/主程式
  5. int main()
  6. {
  7.    
  8.     //註解->給人看
  9.     //你要做的事
  10.     cout<<"hello"<<endl;        //cout->輸出 <<串接符號 endl->結束並換行
  11.      
  12.     system("pause");                  //system->系統,pause->暫停
  13.     return 0;                         //return->回傳,告知主程式已經完成
  14. }
複製代碼

作者: 連翊恩    時間: 2022-12-28 21:06

  1. code
複製代碼
[code][/code]




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