返回列表 發帖

我的第一支程式

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

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

TOP

本帖最後由 孫嘉駿 於 2020-3-6 18:26 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x=0, l=0;
  8.         re:
  9.     int r=0, q, b, w=0, winner, hos, u, k;
  10.         x+=1;
  11.     system("cls");
  12.     v:
  13.     y:
  14.     r:
  15.     r2:
  16.     system("cls");
  17.     srand(time(NULL));
  18.     string name[]={"「財源廣進」賽馬場","比賽進行中","比賽結束"};
  19.     string horses[]={"◆","★","▲","●"};
  20.     string p[]={"(1) 買入","(2) 下注","(3) 結束"};
  21.     int s[]={0,0,0,0};
  22.     cout<<name[0]<<"第"<<x<<"局"<<endl;
  23.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  24.     for(int i=0; i<=3; i++)
  25.     cout<<horses[i]<<endl;
  26.     cout<<endl;
  27.         l=w+l;
  28.         cout<<"目前剩餘金額: "<<l<<endl;
  29.         for(int a=0; a<=2; a++)
  30.     cout<<p[a];
  31.     cin>>q;
  32.     if(q==1)
  33.     {
  34.         cout<<"買入: ";
  35.         cin>>w;
  36.         cout<<"元"<<endl;
  37.         goto v;
  38.     }else if(q==2)
  39.     {
  40.         goto buy;
  41.         }else if(q==3)
  42.     {
  43.         goto end;
  44.     }else
  45.     {
  46.         cout<<"輸入錯誤!"<<endl;
  47.         _sleep(1500);
  48.                 goto y;
  49.         }
  50.     buy:
  51.     cout<<"下注: ";
  52.         cin>>b;
  53.         if(l<=0)
  54.     {
  55.         cout<<"餘額不足,請重新輸入!"<<endl;
  56.         _sleep(1500);
  57.                 goto r;
  58.         }else if(l>0 && l>=b)
  59.         {
  60.                 cout<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  61.         cin>>hos;
  62.         cout<<"比賽即將開始..."<<endl;
  63.         }else if(b>l)
  64.         {
  65.             cout<<"餘額不足,請重新輸入!"<<endl;
  66.                 _sleep(1500);
  67.                 goto r2;
  68.         }
  69.     system("pause");
  70.     system("cls");
  71.     while(s[r]<=73)
  72.     {
  73.         r=rand()%4;
  74.         s[r]+=1;
  75.         cout<<name[1]<<endl;
  76.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  77.          for(int i=0; i<4; i++)
  78.         {
  79.             for(int j=0; j<s[i]; j++)
  80.                 cout<<" ";   
  81.             cout<<horses[i]<<endl;
  82.         }
  83.         _sleep(1);
  84.         system("cls");
  85.     }
  86.     winner=r;
  87.     cout<<name[2]<<","<<horses[winner]<<"獲勝!"<<endl;
  88.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  89.     for(int i=0; i<4; i++)
  90.         {
  91.             for(int j=0; j<s[i]; j++)
  92.                 cout<<" ";   
  93.             cout<<horses[i]<<endl;
  94.         }
  95.     if(winner==hos-1)
  96.     {
  97.             u=3*b;
  98.                 l=l+u;
  99.     }if(winner!=hos-1)
  100.     {
  101.             l=l-b;
  102.             k=k+b;
  103.     }
  104.         system("pause");
  105.     goto re;
  106.     end:
  107.     cout<<"☆★☆謝謝參加,下次再來☆★☆"<<endl;
  108.         cout<<"本次贏了: "<<u<<"元"<<endl;
  109.         cout<<"本次輸了: "<<k<<"元"<<endl;
  110.     cout<<"合計: "<<l<<endl;
  111.         return 0;   
  112. }   
複製代碼

TOP

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

TOP

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

TOP

  1. [code]#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.    
  10.    
  11.    
  12.    
  13. }
複製代碼
[/code]

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

TOP

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

TOP

本帖最後由 余有晉 於 2019-7-19 19:26 編輯

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

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

本帖最後由 蔡忻霓 於 2019-7-20 18:20 編輯
  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. }
複製代碼
[/code]
[/code]

TOP

  1. #include<iostream>
  2. #include<cstdlub>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<end1;  
  7.     system("pause");
  8.     returm0;
  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<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

返回列表