Возьмите 2 карты из колоды и проверьте, не являются ли они парой (имеющей одинаковый ранг). Повторите это как минимум 1000 раз и рассчитайте вероятность вытянуть пару из колоды карт.
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <string>
using namespace std;
int counter;string facevalue[] = { "Two", "Three", "Four", "Five", "Six", "Seven", "Eight","Nine", "Ten", "Jack", "Queen", "King", "Ace" };string suit [] = { "Diamonds", "Hearts", "Spades", "Clubs" };
string getcard() {
string card;
int cardvalue = rand() % 13;
int cardsuit = rand() % 4;
card += facevalue[cardvalue];
card += " of ";
card += suit[cardsuit];
if(cardvalue = cardvalue){
counter = counter + 1;
}return card;
}
int main() {
int numberofcards = 2;
int times = 1000;for (int y =0; y < times; y++){
cout<<" "<<endl;
for (int i = 0; i < numberofcards; i++) {
cout << "You drew a " << getcard() << endl;
}
}
cout<<"counter: "<<counter<<endl;}
Итак, здесь, cardvalue контролирует то, что выводится из массива. Таким образом, если cardvalue равно 1, тогда facevalue [cardvalue] будет facevalue [1], который выведет «Two».
Поэтому сейчас я пытаюсь определить, сколько раз будет одинаковым значение карты при случайном выборе двух карт из колоды.
я сделал
if(cardvalue = cardvalue){
counter = counter + 1;
}
Результат, который я получаю, равен 926, что означает, что в 926 раз значение карты будет одинаковым, если 1000 карт вытянуть из колоды 2 раза. Это не кажется правильным, было бы очень признательно, если бы кто-нибудь мог исправить мою программу или провести меня через процесс.
Я пытался (cardvalue == cardvalue)
но я получаю счетчик: 2000 вместо.
Если вы работаете непосредственно с индексом вместо строки, у вас может быть что-то вроде:
int color_of_card(int i)
{
return i / 13;
}
int value_of_card(int i)
{
return i % 13;
}
std::string card_as_string(int i)
{
static const std::string facevalues[] = {
"Two", "Three", "Four", "Five", "Six", "Seven",
"Eight", "Nine", "Ten", "Jack", "Queen", "King", "Ace"};
static const std::string suits[] = { "Diamonds", "Hearts", "Spades", "Clubs" };
return facevalues[value_of_card(i)] + " of " + suits[color_of_card(i)];
}
int getcard() {
return rand() % 52;
}
int main() {
const int times = 1000;
int counter = 0;
for (int y = 0; y != times; y++)
{
auto card1 = getcard();
auto card2 = getcard();
while (card1 == card2) { card2 = getcard(); } // Ensure cards differ.
if (value_of_card(card1) == value_of_card(card2)) {
++counter;
}
}
std::cout << counter << std::endl; // 58 or 59 normally
// Once you took a card, there are only 3 card on same value
// and there is 51 remaining cards.
std::cout << 3 / 51.f << std::endl; // 0.0588235
}
Сначала удалите глобальную переменную-счетчик, это плохая практика.
Тогда вы можете попробовать что-то вроде этого:
int main() {
int numberofcards = 2;
int times = 1000;
int counter = 0;
std::map<string, int> cardMap;
string currentCard;
int maxNbSameCard;
for (int y =0; y < times; y++){
cardMap.clear();
maxNbSameCard = 0;
for (int i = 0; i < numberofcards; i++) {
currentCard = getcard();
cardMap[currentCard]+=1;
cout << "You drew a " << currentCard << endl;
cout << "It is the " << cardMap[currentCard] << " time you get this card" << endl;
if(maxNbSameCard < cardMap[currentCard]) maxNbSameCard = cardMap[currentCard];
}
if(maxNbSameCard > 1) ++counter;
}
cout<<"counter: "<<counter<<endl;
}