Board logo

標題: [作業] 超級金頭腦 (一) [打印本頁]

作者: 陳品肇    時間: 2019-3-16 12:32     標題: [作業] 超級金頭腦 (一)

本帖最後由 陳品肇 於 2019-3-23 16:23 編輯

設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於11~99之隨機亂數的和.
[attach]6092[/attach]
[attach]6093[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    srand(time(NULL)); //灑種子
  8.    int a,b,ans;
  9.    double start,end,pass;
  10.    re:
  11.    a = rand()%89+11;  //產生第一個數字
  12.    b = rand()%89+11;  //產生第二個數字
  13.    cout<<a<<" + "<<b <<" = ";
  14.      
  15.    start = clock();  //產生題目的毫秒數
  16.    cin>>ans; //思考及輸入答案
  17.    end = clock(); //題目產生跟思考的總時間
  18.    pass = end-start;  //花了多少時間思考
  19.    
  20.    if(ans == (a+b))
  21.    {
  22.      cout<<"答對了!本題你花了"<<pass<<"毫秒思考!"<<endl;
  23.    }else
  24.    {
  25.       cout<<"答錯了!請重新作答"<<endl;
  26.    }
  27.    system("pause");
  28.    goto re;  //重新作答
  29.    
  30.    system("pause");
  31.    return 0;

  32. }
複製代碼

作者: 陳柏霖    時間: 2019-3-18 17:54

此帖僅作者可見
作者: 蔡季庭    時間: 2019-3-23 14:28

此帖僅作者可見
作者: 譚詩澐    時間: 2019-3-23 16:30

此帖僅作者可見
作者: 蔡依宸    時間: 2019-3-23 16:36

此帖僅作者可見
作者: 戴安利    時間: 2019-4-3 19:10

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2