Board logo

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

作者: tonyh    時間: 2017-2-2 14:32     標題: 我的第一支程式

在螢幕上顯示 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. }
複製代碼

作者: 邵顯茗    時間: 2017-2-2 16:19

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

作者: 吳尚謙    時間: 2017-2-2 16:19

本帖最後由 tonyh 於 2017-2-2 16: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. }
複製代碼

作者: 吳宇翔    時間: 2017-2-2 16:23

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

作者: 柯識一    時間: 2017-2-2 16:24

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

作者: 曹瑈芠    時間: 2017-2-2 16:24

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

作者: 呂亮逵    時間: 2017-2-2 16:24

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

作者: 吳孟軒    時間: 2017-2-2 16:41

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

作者: 莊晉安    時間: 2017-2-2 16:43

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

作者: 吳冠諺    時間: 2017-2-3 13:50

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"You are a pig"<<endl;
    system("pause");
    return 0;
}[url]
  1. [code][code]
複製代碼
[/code][/code]
[/url]
作者: 吳冠叡    時間: 2017-2-3 13:57

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"cc"<<endl;
    system("pause");
    return 0;
}
作者: 張閎鈞    時間: 2017-2-3 14:02

本帖最後由 張閎鈞 於 2017-2-3 14:18 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello!"<<endl;
    system("pause");
    return 0;
}
[code][/code]
作者: 張凱婷    時間: 2017-2-3 14:19

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello"<<endl;
    system("pause");
    return 0;
}
[code][/code]
作者: 張凱婷    時間: 2017-2-3 14:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //int x;
  7.     //int y;
  8.     int x=23,y=7;
  9.    
  10.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  11.     cout<<"x+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.    
  17.     system("pause");
  18.     return 0;
  19. }  
複製代碼





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