C++카드 의 카드 세탁 게임 디자인
필 자 는 타인 의 디자인 을 배 우 는 토대 에서 자신의 프로 그래 밍 을 완성 했다.원본 프로그램 을 공유 합 니 다.
[1]파일"card.h"
#ifndef CARD_H
#define CARD_H
#include<string>
using namespace std;
class Card
{
public:
static const int totalFaces=13;
static const int totalSuits=4;
Card(int,int);
int getFace();
int getSuit();
string toString();
private:
int face,suit;
static const string faceNames[totalFaces];
static const string suitNames[totalSuits];
};
#endif // CARD_H
[2]파일"card.cpp"
#include"card.h"
Card::Card(int faceNumber,int suitNumber)
{
face=faceNumber;
suit=suitNumber;
}
string Card::toString()
{
return faceNames[face]+" of "+suitNames[suit];
}
int Card::getFace() {return face;}
int Card::getSuit() {return suit;}
const string Card::faceNames[totalFaces]=
{"A","2","3","4","5","6","7","8","9","10","J","Q","K"};
const string Card::suitNames[totalSuits]=
{"heart","diamond","club","spade"};
[3]파일"deckofcards.h"
#ifndef DECKOFCARDS_H
#define DECKOFCARDS_H
#include<vector>
#include"card.h"
using namespace std;
class DeckOfCards
{
public:
static const int fiveCards=5;
static const int allCards=52;
DeckOfCards();
void shuffle();
Card dealCard(int);
void sortCards();
int duiziCards(int* sortFaces);
//bool moreCards();
private:
vector<Card> deck;
int currentCard;
};
#endif // DECKOFCARDS_H
[4]파일"deckofcards.cpp"
#include"deckofcards.h"
#include<cstdlib>
#include<ctime>
DeckOfCards::DeckOfCards()
{
//currentCard=0;
for(int i=0;i<allCards;i++)
{
Card card(i%Card::totalFaces,i/Card::totalFaces);
deck.push_back(card);
}
}
void DeckOfCards::shuffle()
{
srand(time(0));
int swapRandom[allCards];
for(int i=0;i<allCards;i++)
swapRandom[i]=int(rand())%allCards;
for(int i=0;i<allCards;i++)
{
Card swapCard(0,0);
swapCard=deck[i];
deck[i]=deck[swapRandom[i]];
deck[swapRandom[i]]=swapCard;
}
}
Card DeckOfCards::dealCard(int how_many)
{
for(int i=0;i<how_many;i++)
{
cout <<deck[i].toString() <<endl;
if((i+1)%13==0) cout <<endl;
}
}
void DeckOfCards::sortCards()
{
int sortFaces[fiveCards];
int sortSuits[fiveCards];
for(int i=0;i<fiveCards;i++)
{
sortFaces[i]=deck[i].getFace();
sortSuits[i]=deck[i].getSuit();
}
for(int i=fiveCards-1;i>=0;i--)
for(int j=0;j<=i-1;j++)
if(sortFaces[j]>sortFaces[j+1])
{
int t;
t=sortFaces[j];
sortFaces[j]=sortFaces[j+1];
sortFaces[j+1]=t;
}
if((sortFaces[0]==sortFaces[1]&&sortFaces[0]==sortFaces[2]&&sortFaces[0]==sortFaces[3])||
(sortFaces[1]==sortFaces[2]&&sortFaces[1]==sortFaces[3]&&sortFaces[1]==sortFaces[4]))
cout <<"There are 4 same cards." <<endl;
else if((sortFaces[0]==sortFaces[1]&&sortFaces[0]==sortFaces[2])||
(sortFaces[1]==sortFaces[2]&&sortFaces[1]==sortFaces[3])||
(sortFaces[2]==sortFaces[3]&&sortFaces[2]==sortFaces[4]))
cout <<"There are 3 same cards." <<endl;
else if(int i=duiziCards(sortFaces))
cout <<"There are " <<i <<" pairs." <<endl;
else
cout <<"There is no same cards." <<endl;
if(sortFaces[0]+1==sortFaces[1]&&sortFaces[1]+1==sortFaces[2]&&
sortFaces[2]+1==sortFaces[3]&&sortFaces[3]+1==sortFaces[4])
cout <<"The five cards is a straight." <<endl;
else
cout <<"The five cards is not a straight." <<endl;
if(sortSuits[0]==sortSuits[1]&&sortSuits[0]==sortSuits[2]&&
sortSuits[0]==sortSuits[3]&&sortSuits[0]==sortSuits[4])
cout <<"The five cards have same flower." <<endl;
else
cout <<"The five cards have different flower." <<endl;
}
int DeckOfCards::duiziCards(int* sortFaces)
{
int duiziNum=0;
for(int i=0;i<fiveCards-1;i++)
if(sortFaces[i]==sortFaces[i+1]) duiziNum++;
return duiziNum;
}
[5]주 함수 파일"mainFiveCards.cpp”
#include<iostream>
#include"card.cpp"
#include"deckofcards.cpp"
using namespace std;
int main()
{
DeckOfCards aDeck;
cout <<"Deal all cards before shuffle." <<endl;
aDeck.dealCard(aDeck.allCards);
aDeck.shuffle();
cout <<"Deal five cards after shuffle." <<endl;
aDeck.dealCard(aDeck.fiveCards);
cout <<"
The result after sorting." <<endl;
aDeck.sortCards();
return 0;
}
5 개의 파일 을 같은 디 렉 터 리 에 두 고 파일"main"FiveCards.cpp 를 컴 파일 하여 실행 하면 됩 니 다.다음은 CodeBlocks 에서 실 행 된 결과 입 니 다.주:의문 이나 고견 이 있 으 면 독자 여러분 과 필자 의 교 류 를 환영 하 며 함께 공부 하고 발전 하 기 를 바 랍 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.