Your Questions About Poker Calculator

Robert asks…

POLL: Are you a…..?

Virgin?

Married?

In a relationship?

Have a animal?

Ate cereal for breakfast?

Loves chicken?

Just went to they bathroom a few minutes ago?

Boy or Girl?

16 or younger?

Has an youtube account?

Play poker?

Ever used a calculator ona math test?

Ever writin a letter?

Had your first kiss?

Camped?

Kissed in the rain?

Gone to prom?

Gay?

Wants to finish this test?

Are ready for the main question?

Are you really ready?

Just kidding theres no main question

Do you like pie or cheese?

Jonas Brothers or miley Cyrus?

Taylor Lautner or Boo Boo Stewart?

Rob or Taylor?

Tomato or TomAto?

Potato or PotAto?

Do think this test is almost done?

Black or Brown?

Cat or Dog?

ok your done.

just kiding.

ok now seriously your done.

oh wait one more….. do you hate me?

Answers please. Its Just for fun!

admin answers:

Virgin? Yes
Married? No
In a relationship? No :'(
Have a animal? *an* animal, no i don’t own any
Ate cereal for breakfast? Yesterday i did haha
Loves chicken? Only Chicken Alfredo 😀
Just went to they bathroom a few minutes ago? Like an hour ago
Boy or Girl? Dude
16 or younger? 18
Has an Youtube account? Yep
Play poker? Nope
Ever used a calculator on a math test? Yeah
Ever writin a letter? Yes
Had your first kiss? No :'(
Camped? Science camp in 6th grade xD
Kissed in the rain? No -.-
Gone to prom? No >_<
Gay? Yes =)
Wants to finish this test? Yes lol
Are ready for the main question? Passed it xD
Are you really ready? Uh oh, i want some more, uh oh, WHAT ARE YOU WAITING FOR!?

In case you didn't know that was a line from this awesome song 😀
http://www.youtube.com/watch?v=gM7Hlg75Mlo

Steven asks…

Can you recommend a Poker Calculator with tracking features?

admin answers:

Please visit the site: http://www.pokerprolabs.com / for best online poker calculator

George asks…

Shipping from US to Hungary?

I’m selling a Poker Chip the size of a half dollar on ebay.
Someone asked me how much it would cost to ship it to hungary.
I have no idea how to figure this out.

My zipcode is 10566 and his is 2119
I tried using the USPS shipping calculator but it says the Hungary zipcode has to be 5 numbers long.

admin answers:

You would ship via reg, airmail. You could buy oversized letter mail stamp.
Or if you will be printing labels on paypal just put under oversize mail (same thing)
i am not sure how much it will cost you because i live in canada for me it would cost around 7.00 for me to ship.

Nancy asks…

What advice in c++…?

I recently wrote a program and wanted some feedback about the programming and algorithm.

I just want to know what can i do to make this program better? More efficient?

HERE IS THE CODE:

#include
#include
#include
#include
#include
using namespace std;
void MemoryMatchingGame();//The matching game;
const int numberOfCards = 16;//Needed for MemoryMatching game;
void shuffle(int [], int);//Needed for MemoryMatching game;
void displayBoard(const int [], int [], int, int, int);//Needed for MemoryMatching game;
void clearScreen();//Needed for MemoryMatching game;
bool checkGameStatus(const int [], int);//Needed for MemoryMatching game;
void menu();//The main menu;
void NUMBERgame();//The number guessing game;
void Rock_Paper_Scissors();//The rock-paper-scissors game;
void Choices();//Includes menu function with user choice needed;
int main(){

//Declare/ Initialize variables;
int pick;

//Dunction displays menu, and inputs;
Choices();

}
void Choices()
{int pick;
menu();
cout<>pick;
cout<<endl;
while((pick7))
{
cout<<"Invalid input. Please input a correct response"<>pick;
}
switch(pick)
{menu();
cout<>pick;
while((pick7))
{
cout<<"Invalid input. Please input a correct response"<>pick;
}
case 1: MemoryMatchingGame();
break;
case 2: NUMBERgame();
break;
case 3: Rock_Paper_Scissors();
break;
case 7: exit(1);
break;
}
}
void menu()
{
cout<<"IN THIS MENU YOU HAVE MULTIPLE CHOICES OF GAMES AND APPLICATIONS"<<endl;
cout<<"CHOOSE THE TYPE OF GAME/APPLICATION YOU WANT TO PLAY/PICK."<<endl;
cout<<"AFTER YOUR CHOICE, A DESCRIPTION OF THE GAME WILL POP UP"<<endl;
cout<<"IF YOU WANT TO CONTINUE TO PLAY THE GAME AFTER READING THE DESCRIPTION, THEN FOLLOW DIRECTION FROM THERE"<<endl;
cout<<"!!HAVE FUN!!"<<endl<<endl;
cout<<"1) THE MATCHING GAME "<<endl;
cout<<"2) THE NUMBER GUESSING GAME "<<endl;
cout<<"3) ROCK-PAPER-SICOSSORS GAME"<<endl;
cout<<"4) BLACKJACK"<<endl;
cout<<"5) POKER „<<endl;
cout<<"6) CALCULATOR „<<endl;
cout<<"7) Exit program 🙁 "<<endl;

return;
}
void NUMBERgame()
{
//Declare variable/initialize
char play;
int choice1,count(0),choice2;
//Seed random generator;
srand(time(NULL));
//Goal number
int goal=rand()%250+1;
//Displays the description of the game;
cout<<"In this game a number is randomly generated from the range of 1-250. "<<endl;
cout<<"The object of this game is for you to guess the random number. "<<endl;
cout<<"There will be a guide : saying your guess is too high or low. "<<endl;
cout<<"So is this your style of choice?(y/n) "<>play;
cout<<endl;
if(play=='n'||'N')
{cout<<"1) Main Menu "<<endl<<"2) Exit program"<>choice1;
cout<<endl;
if(choice1==1)
Choices();
else if(choice1==2)
exit(1);
else while(choice1!=1 && choice1!=2)
{cout<<"Invalid response. Please input a correct response"<>choice1;
}
}

while(play!=’y‘ && play!=’n‘ && play!=’Y‘ && play!=’N‘)
{cout<<"Your input is invalid. Please try again with valid input "<>play;
}
if(play==’N’||play==’n‘)
exit(1);
while(play==’Y‘ ||play==’y‘)
{//Input your first guess
cout<>choice1,choice2;
cout<<endl;
//Keeps track of the number of guesses;
count++;
//check if the guess number is correct;
if(choice1==goal)
{cout<<"Very nice, You have won! "<<endl<<endl;
cout<<"It took you "<<count<<" times to guess the correct number"<<endl<<endl;
cout<<"1) Go to main menu "<<endl;
cout<<"2) Exit Program "<>choice2;
if(choice2==2)
exit(1);
if(choice2==1)
{cout<<endl<<endl<<endl<<endl<<endl<<endl<<endl;
menu();
}
else if(choice2!=1 || choice2!=2)
{cout<<endl<<endl<<"Invalid input. Please input correct number"<>choice2;
}

}
else if(choice1>goal)
cout<<" Your guess number is too high "<<endl;
else if(choice1<goal)
cout<<" Your guess number is too low "<<endl;

}
}
void MemoryMatchingGame()
{
//number of cards in the deck is set to 16

//cards is the array that holds the 16 cards of the deck.
//Shown below is some arbitrary arrangement of cards on the table
int cards[numberOfCards] = {1,2,3,4,5,6,7,8,1,2,3,4,5,6,7,8};

//cardStatus is the array that holds the information on which cards are face up/face down.
int cardStatus[numberOfCards];

//keeps track of number of guesses taken by the player to complete the game.
int guess = 0;

//initialize the cardStatus array to all cards face down on the table(intege

admin answers:

By the look of it you are using C++ in a manner of C (i.e. Functional programming instead of OO), that is OK, it is a good start anyway…

Always look at you code yourself and consider what can be cleaned up, simplified and reused, also check for the code that is no longer used…
Start thinking about code re-usability now, you are bound to write some code that can be used somewhere else – extract this code into separate functions and re-use the functions… After some time you will end up with your own libraries of functions – there is no point in writing the same code again and again…

Start following naming conventions early, it will make your life simpler when you look at your code in few months/years… And try to give your programs/functions/objects/vars more descriptive names [AFAIR there is NO limit on identifier length] – imagine that you open the source for the FIRST time, what would the name like Choices() tell you about the function…

Encapsulate your code.
(for example you declared const int numberOfCards = 16;//Needed for MemoryMatching game; in your global vars with function declarations… Why? If the var is used ONLY in some place than declare it there, it will help you avoid unexpected side effects…)

Mark asks…

Is there any Poker Calculator to track opponent?

admin answers:

Check out this free poker ebook. It has a whole chapter talking about online poker software to track your opponents.

Powered by Yahoo! Answers

Comments are closed.




Poker Odds Calculator TournamentIndicator located at Am Pokertisch 1 , Deutschland, BY . Reviewed by 11 Pokerexperten rated: 4.7 / 5