2016-09-24 4 views
-4

正しい数字を振るか、失うまで、ダイスを回し続けるにはどうすればよいですか?条件が成立するまでのルーピング

ループを継続するには、ゲームやダイスが必要です。これを行うために何を修正するのですか?ここで

は私のプログラムです:

#include <iostream> 
#include <ctime> 
#include <cstdlib> 

using namespace std; 

int main() 
{ 
int dice_num1, dice_num2 = 0; 
int roll_dice; 
int dice_num3, dice_num4 = 0; 
int roll_dice2; 
char repeat = 'y'; 

while (repeat == 'y' || repeat == 'Y') 
{ 
    srand(time(0));             
    dice_num1 = rand() % 6 + 1; 
    dice_num2 = rand() % 6 + 1; 
    roll_dice = dice_num1 + dice_num2; 

    cout <<"Player rolled: "<< dice_num1<<" + "<<dice_num2<<" = "<<roll_dice<<endl; 
    cout <<"\nThe point is "<<roll_dice<<endl; 

    dice_num3 = rand() % 6 + 1; 
    dice_num4 = rand() % 6 + 1; 
    roll_dice2 = dice_num3 + dice_num4; 

    cout <<"\nPlayer rolled: "<< dice_num3<<" + "<<dice_num4<<" = "<<roll_dice2<<endl; 



    if (roll_dice2 == 7 || roll_dice2 == 11) 
    { 
     cout << "Congrats you are a Winner!" << endl ; 
    } 

    else if (roll_dice2 == 2 || roll_dice2 == 3 || roll_dice2 == 12) 
    { 
     cout << "Sorry, you rolled craps, You lose!" << endl; 
    } 

    else if (roll_dice2 == 4 || roll_dice2 == 5 ||roll_dice2 == 6 ||roll_dice2 == 8 || roll_dice2 == 9 || roll_dice2 == 10) 
     {  
     dice_num3 = rand() % 6 + 1; 
     dice_num4 = rand() % 6 + 1; 
    int sum_num2 = dice_num3 + dice_num4; 

    if(sum_num2 == roll_dice2) 
      { 
       cout << "Congrats you are a Winner!" << endl; 
       break; 
      } 
    else if(sum_num2 == 7) 
      { 
       cout << "Sorry, You Lose!" << endl; 
       break; 
      } 
    } 
cout <<"\nAnother game? Y(es) or N(o)" << endl; 
    cin >> repeat; 

if (repeat == 'n' || repeat == 'N') 
{ 
cout <<"Thank you for playing!"<< endl; 
return 0; 
} 
} 
} 

これが私の出力です:

Player rolled: 4 + 5 = 9 

The point is 9 

Player rolled: 5 + 3 = 9 

Another game? Y(es) or N(o) 

これは私の出力をする必要があるものです:私はこれを取得するにはどうすればよい

Player rolled: 2 + 2 = 4 

The point is 4 

Player rolled: 4 + 5 = 9 
Player rolled: 5 + 1 = 6 
Player rolled: 1 + 2 = 3 
Player rolled: 2 + 3 = 5 
Player rolled: 1 + 2 = 3 
Player rolled: 3 + 5 = 8 
Player rolled: 2 + 4 = 6 
Player rolled: 6 + 3 = 9 
Player rolled: 6 + 2 = 8 
Player rolled: 3 + 4 = 7 

You rolled 7 and lost! 

ループの中でサイコロを振っていますか?

+1

私はギャンブルに参加したことはありません。まあ、少なくとも、私は今、クラップスのルールを知っています。 –

+0

ありがとうございます。 –

答えて

-1

元の構造に似たコードを作成しようとしました。これはあなたが望むことをするはずです。

#include <iostream> 
#include <time.h> 
#include <cstdlib> 

using namespace std; 

int main() { 

    srand(clock()); 

    int die1, die2, total, point; 

    die1 = rand() % 6 + 1; 
    die2 = rand() % 6 + 1; 
    total = die1 + die2; 

    cout << "Player rolled: " << die1 << " + " << die2 << " = " << total << endl; 

    if (total == 2 || total == 3 || total == 12) { 
     cout << "You rolled " << total << " and lost!" << endl; 
     return 0; 
    } 
    else if (total == 7 || total == 11) { 
     cout << "You rolled " << total << " and won!" << endl; 
     return 0; 
    } 

    cout << "The point is " << total << endl; 

    point = total; 

    while (true) { 
     die1 = rand() % 6 + 1; 
     die2 = rand() % 6 + 1; 
     total = die1 + die2; 
     cout << "Player rolled: " << die1 << " + " << die2 << " = " << total << endl; 

     if (total == point) { 
      cout << "You rolled " << total << " and won!" << endl; 
      break; 
     } 
     else if (total == 7) { 
      cout << "You rolled " << total << " and lost!" << endl; 
      break; 
     } 
    } 

    return 0; 

} 
+0

これで完了ですか?私はそれを実行することができなかった、私はそれに戻り値を入れてみました。 –

+0

投稿する前にテストしました。何かエラーがありますか? –

+0

「srand(time(0));」にエラーが表示されるスコープ –

関連する問題