返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[5][4]= {{0,9,8,0},{0,9,8,0},{0,9,8,0},{0,9,8,0},{0,9,8,0}};
  7.     int g[5][6]= {{4,5,4,6,6,6},{4,5,4,6,6,6},{4,5,4,6,6,6},{4,5,4,6,6,6},{4,5,4,6,6,6}};
  8.     for(int i=0; i<5; i++)
  9.     {
  10.         for(int j=0; j<4; j++)
  11.         {
  12.             cout<<a[i][j];
  13.         }
  14.         for(int k=0; k<6; k++)
  15.         {
  16.             cout<<g[i][k];
  17.         }
  18.         cout<<endl;
  19.     }
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int a=1;a<=50;a++){
  7.         cout<<rand()%15-7<<endl;
  8.     }
  9.        system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int player,computer;
  9.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  10.     cin>>player;
  11.     computer=rand()%3+1;
  12.     cout<<"你出";
  13.    string a[3]={"剪刀!","石頭!","布!"};
  14.    cout<<a[player-1];
  15.     cout<<"電腦出";
  16.      cout<<a[computer-1];
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int player,computer;
  9.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  10.     cin>>player;
  11.     computer=rand()%3+1;
  12.     cout<<"你出";
  13.     string a[3]= {"剪刀!","石頭!","布!"};
  14.     cout<<a[player-1];
  15.     cout<<"電腦出";
  16.     cout<<a[computer-1];
  17.     if(player==computer)
  18.         cout<<"same";
  19.     else if(player==3 && computer==2)
  20.         cout<<" you win";
  21.     else if(player==3 && computer==2)
  22.         cout<<"you win";
  23.      else if(player==2 && computer==1)
  24.                                cout<<"you win";
  25.       else if(player==1 && computer==3)
  26.                 cout<<"you win";
  27.       else
  28.                     cout<<"you lose";
  29.                     system("pause");
  30.                     return 0;
  31.         }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. #include <windows.h>
  5. using namespace std;
  6. int main()
  7. {
  8.     int s[10][10]= {
  9.         {1,0,0,0,0,0,0,0,0,0},
  10.         {0,1,0,0,0,0,0,0,0,0},
  11.         {0,0,1,0,0,0,0,0,0,0},
  12.         {0,0,0,1,0,0,0,0,0,0},
  13.         {0,0,0,0,1,0,0,0,0,0},
  14.         {0,0,0,0,0,1,0,0,0,0},
  15.         {0,0,0,0,0,0,1,0,0,0},
  16.         {0,0,0,0,0,0,0,1,0,0},
  17.         {0,0,0,0,0,0,0,0,1,0},
  18.         {0,0,0,0,0,0,0,0,0,1},
  19.          };


  20.     for(int r=0; r<10; r++)
  21.     {_sleep(50);
  22.         system("cls");
  23.         cout<<" 載入中"<<(r+1)*10<<"%     ";
  24.         for(int h=0; h<10; h++)
  25.         {
  26.             cout<<s[r][h];
  27.             _sleep(50);

  28.         }

  29.         cout<<endl;
  30.     }
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   int d=1;
  7.     int m=0;
  8.     re:
  9.     system("cls");

  10.     int s[]={0,0,0,0};
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"balance"<<m<<"dollars"<<endl;
  19.     cout<<"1.buy"<<endl;
  20.    cin>>m;
  21.     d=d+1;
  22.     system("pause");
  23.     while(true)
  24.     {
  25.         system("cls");
  26.         int r=rand()%4;   //0~3
  27.         s[r]++;
  28.         cout<<"比賽進行中"<<endl;
  29.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  30.         for(int i=0; i<=s[0]; i++)
  31.             cout<<" ";
  32.         cout<<"◆"<<endl;
  33.         for(int i=0; i<=s[1]; i++)
  34.             cout<<" ";
  35.         cout<<"★"<<endl;
  36.         for(int i=0; i<=s[2]; i++)
  37.             cout<<" ";
  38.         cout<<"▲"<<endl;
  39.         for(int i=0; i<=s[3]; i++)
  40.             cout<<" ";
  41.         cout<<"●"<<endl;
  42.         if(s[r]==73)
  43.             break;
  44.         _sleep(0.001);
  45.     }
  46.     system("cls");
  47.     cout<<"比賽結束"<<endl;
  48.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  49.     for(int i=0; i<=s[0]; i++)
  50.         cout<<" ";
  51.     cout<<"◆"<<endl;
  52.     for(int i=0; i<=s[1]; i++)
  53.         cout<<" ";
  54.     cout<<"★"<<endl;
  55.     for(int i=0; i<=s[2]; i++)
  56.         cout<<" ";
  57.     cout<<"▲"<<endl;
  58.     for(int i=0; i<=s[3]; i++)
  59.         cout<<" ";
  60.     cout<<"●"<<endl;
  61.     system("pause");
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

TOP

返回列表