返回列表 發帖

抽籤程式 (一)

本帖最後由 許婷芳 於 2020-4-11 11:52 編輯

發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
(ex. 要吃什麼、誰掃廁所、玩遊戲輸了做什麼處罰...)







抽籤程式.exe
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    ..... 重覆執行
  7.    int speed=50;
  8.    string name[]={"aaa","bbb","ccc","ddd","eee"};  //選項
  9.    srand(time(NULL));
  10.    cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.    cout<<"今天誰.....??"<<endl<<endl; //問題
  12.    system("pause");
  13.    for(int i=1; ...; i++)  //抽籤次數
  14.    {
  15.        if(...)   //兩種☆★的變換
  16.            cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  17.        else
  18.            cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  19.        cout<<name[rand()%5]<<endl<<endl;
  20.        _sleep(speed);
  21.        system("cls");
  22.    }
  23.   ..... 輸出結果 && 重覆執行
  24.    return 0;
  25. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表