返回列表 發帖

抽籤程式

本帖最後由 tonyh 於 2013-8-31 15:40 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"☆★☆ 抽籤程式 1.0 ☆★☆"<<endl<<endl;
  7.     system("pause");
  8.     system("cls");
  9.     string name[]={"泳鱔","白米","得旗","以諾","逸群","瀚仁","鎧言","昱安","崇維","凡瑛","柏維"};
  10.     srand(time(NULL));
  11.     int ball;
  12.     for(int i=1; i<=150; i++)
  13.     {
  14.          if(i%2==0)
  15.              cout<<"☆★☆抽籤中☆★☆"<<endl;
  16.          else
  17.              cout<<"★☆★抽籤中★☆★"<<endl;
  18.          ball=rand()%11;
  19.          cout<<name[ball]<<endl;
  20.          system("cls");   
  21.     }
  22.     cout<<"抽到: "<<name[ball]<<"!"<<endl;
  23.     cout<<"請上台表現!"<<endl<<endl;
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表