返回列表 發帖

我的第一支程式

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

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<<"You are a pig"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

#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]

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"cc"<<endl;
    system("pause");
    return 0;
}

TOP

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

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

TOP

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

TOP

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

TOP

返回列表