![]() |
| |||||||
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 |
| Registered User Join Date: Nov 2009
Posts: 2
| how to do the card count and how to make the computer add the cards number? |
| cutechocolateka is offline | |
| | #2 |
| Super Moderator Join Date: Sep 2001
Posts: 4,680
| That's an extremely vague question. You need to provide more details about what you're trying to do, what you don't understand, and what your question is. |
| sean is offline | |
| | #3 |
| Registered User Join Date: Nov 2009
Posts: 2
| The players have to draw 4 cards.... (press d 4 times) And the cardnumber of each 4 cards is the player turn pts.. (add all the cards number) to get 300 pts to win.. how to make the computer add the number of these 4 cards? when player press d it just continued giveing the random numbers and its never stop how to make it stop when it get 4 cards? |
| cutechocolateka is offline | |
| | #4 |
| Confused Join Date: Sep 2001 Location: Sweden
Posts: 3,122
| An integer counter? Increase by 1, and when it hits 4, stop?
__________________ MagosX.com Give a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime. |
| Magos is offline | |
| | #5 |
| eh ya hoser, got a beer? Join Date: Feb 2003
Posts: 287
| Turn that into code that will compile. Code: public Method()
{
counter = 0;
totalNumber = 0;
while (totalNumber < 300)
{
for(int i = 0; i < 4; i++)
{
input = console.readline();
if (input == 'd')
{
totalNumber += randomNumber;
}
}
console.writeline("Your total points with 4 more cards is {0}", totalNumber);
}
console.writeline("You got to 300");
}
__________________ The keyboard is the standard device used to cause computer errors! |
| stumon is offline | |
![]() |
| Thread Tools | |
| Display Modes | |
|