Я только начал изучать код C ++, поэтому, пожалуйста, потерпите меня, мои знания очень и очень ограничены. Это моя первая программа, написанная с нуля. Я пишу программу, которая смотрит на руку из пяти карт, а затем сообщает пользователю его тип, например, флеш-рояль, стрит и т. Д.
Сначала у меня есть пользователь, который вводит свою руку, а затем сохраняет эту руку в массиве.
Что мне нужно сделать, так это найти в этом массиве дубликаты (например, в массиве две тройки), посчитать количество дубликатов (в данном случае 2), а затем поместить это число 2 в другой массив в соответствующей позиции. карты.
Например:
У пользователя есть рука S11H11D11C11S10 (S — пики, H — червы, D- Diamond и C — трефы)
Число 11 здесь представляет Джека, с тузом ранга 1 и королем рангом 13.
Таким образом, у пользователя в руке 4 гнезда и 10 пиков.
Мне нужна программа, чтобы посчитать эти четыре гнезда, а затем поместить в другой массив на 11-м месте. Это скажет мне, что у пользователя есть четыре карты, и они — валеты.
Вы можете посмотреть мой код здесь:
ЗАГОЛОВОК:
#ifndef SUIT_H_INCLUDED
#define SUIT_H_INCLUDED
#include <string>
using namespace std;struct Card {
int rank1;
int rank2;
int rank3;
int rank4;
int rank5;
char suit1;
char suit2;
char suit3;
char suit4;
char suit5;};
#endif // SUIT_H_INCLUDED
ОСНОВНАЯ ФУНКЦИЯ:
#include <iostream>
#include <string>
#include "suit.h"
using namespace std;int main()
{
int usrhand[10];char a; //letters for declaring cards in hand
char b;
char c;
char d;
char e;
int f; //numbers for declaring rank of cards
int g;
int h;
int i;
int j;
Card hand; //initiates a structure for the players hand
hand.suit1 = a;
hand.suit2 = b;
hand.suit3 = c;
hand.suit4 = d;
hand.suit5 = e;
hand.rank1 = f;
hand.rank2 = g;
hand.rank3 = h;
hand.rank4 = i;
hand.rank5 = j;cout << "Welcome to Card Sorter (TM) designed by ----" << endl;
cout << " " <<endl;
cout << "You will be prompted to enter your 5 card hand." <<endl;
cout << "I will prompt you for each card, one by one." <<endl;
cout << "I will ask you for the suit and then the rank of the card." <<endl;
cout << "Keep in mind: Spades=S, Hearts=H, Diamonds=D, Clubs=C" <<endl;
cout << "Also keep in mind the value of Ace is low, and is rank 1" <<endl;
cout << "While the value of a King is high and is rank 13." <<endl;
cout << "Let's begin." <<endl;
cout << " " << endl;
cout << "What is the suit of your first card (S,H,D,C)?" <<endl;
cin >> a;
cout << "What is the rank of your first card (1-13)" <<endl;
cin >> f;
cout << "What is the suit of your second card? (S,H,D,C)?" <<endl;
cin >> b;
cout << "What is the rank of your second card (1-13)" <<endl;
cin >> g;
cout << "What is the suit of your third card? (S,H,D,C)?" <<endl;
cin >> c;
cout << "What is the rank of your third card (1-13)" <<endl;
cin >> h;
cout << "What is the suit of your fourth card? (S,H,D,C)?" <<endl;
cin >> d;
cout << "What is the rank of your fourth card (1-13)" <<endl;
cin >> i;
cout << "What is the suit of your final card? (S,H,D,C)?" <<endl;
cin >> e;
cout << "What is the rank of your final card (1-13)" <<endl;
cin >> j;
usrhand[0] = a;
usrhand[1] = f;
usrhand[2] = b;
usrhand[3] = g;
usrhand[4] = c;
usrhand[5] = h;
usrhand[6] = d;
usrhand[7] = i;
usrhand[8] = e;
usrhand[9] = j;
cout <<" Lets take a look at your current hand. " <<endl;
printf("%c", usrhand[0]);
printf("%d", usrhand[1]);
printf("%c", usrhand[2]);
printf("%d", usrhand[3]);
printf("%c", usrhand[4]);
printf("%d", usrhand[5]);
printf("%c", usrhand[6]);
printf("%d", usrhand[7]);
printf("%c", usrhand[8]);
printf("%d", usrhand[9]);
//need to count duplicate ranks in this array (ie. player has 4 cards of the same value, let's say value is 5)
// and then place the counted value in another array at the
// correct position, the position that matches the value in this case (so array2[4] = 4)
// Then I will program something to examine the second array for its number values and print out the players hand
// (ie. array2[4] = 4, player has four 5's this is a Four of a Kind)
return 0;
}
Так как вам нужно только найти дубликаты рангов, вы можете сделать это следующим образом:
int dupCounter[13];
for (int i=0; i<13; i++)
{
dupCounter[i] = 0;
}
for (int i=0; i<5; i++)
{
dupCounter[usrhand[i*2+1]-1] ++;
}
Других решений пока нет …