Created
July 1, 2016 12:12
-
-
Save FraGoTe/8c82b4dd992cf65580c1bc63248a0de2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
int main() | |
{ | |
srand(time(0)); | |
cout << "Description: This program plays the card game war between a computer and human player." << endl; | |
cout << endl; | |
int compCardVal = 2 + (rand() % 12); | |
string displayCompCardVal = "Computer's card is a "; | |
if (compCardVal <= 10) { | |
stringstream ss; | |
ss << compCardVal; | |
displayCompCardVal += ss.str() + " of "; | |
} | |
if (compCardVal == 11) { | |
displayCompCardVal += "Jack of "; | |
} | |
if (compCardVal == 12) { | |
displayCompCardVal += "Queen of "; | |
} | |
if (compCardVal == 13) { | |
displayCompCardVal += "King of "; | |
} | |
if (compCardVal == 14) { | |
displayCompCardVal += "Ace of "; | |
} | |
int compCardSuit = rand() % 4; | |
string displayCompCardSuit; | |
if (compCardSuit == 0) | |
displayCompCardSuit = "Spades "; | |
if (compCardSuit == 1) | |
displayCompCardSuit = "Diamonds "; | |
if (compCardSuit == 2) | |
displayCompCardSuit = "Hearts "; | |
if(compCardSuit == 3) | |
displayCompCardSuit = "Clubs "; | |
string displayCompCard = displayCompCardVal + displayCompCardSuit; | |
cout << displayCompCard << endl; | |
//human part starts here | |
int humanCardVal = 2 + (rand() % 12); | |
string displayHumanCardVal = "Human's card is a ";; | |
if(humanCardVal <= 10){ | |
stringstream ss; | |
ss << humanCardVal; | |
displayHumanCardVal += ss.str() + " of "; | |
} | |
if (humanCardVal == 11) { | |
displayHumanCardVal += "Jack of "; | |
} | |
if (humanCardVal == 12) { | |
displayHumanCardVal += "Queen of "; | |
} | |
if (humanCardVal == 13) { | |
displayHumanCardVal += "King of "; | |
} | |
if (humanCardVal == 14) { | |
displayHumanCardVal += "Ace of "; | |
} | |
int humanCardSuit = rand() % 4; | |
string displayHumanCardSuit; | |
if (humanCardSuit == 0) { | |
displayHumanCardSuit = "Spades"; | |
} | |
if (humanCardSuit == 1) { | |
displayHumanCardSuit = "Diamonds"; | |
} | |
if (humanCardSuit == 2) { | |
displayHumanCardSuit = "Hearts"; | |
} | |
if (humanCardSuit == 3) { | |
displayHumanCardSuit = "Clubs"; | |
} | |
string displayHumanCard = displayHumanCardVal + displayHumanCardSuit; | |
cout << displayHumanCard << endl; | |
//display results here | |
if (compCardVal < humanCardVal) { | |
cout << "Human wins!"; | |
} | |
if (compCardVal == humanCardVal) { | |
cout << "It's a tie."; | |
} | |
if (compCardVal > humanCardVal) { | |
cout << "Computer wins!"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment