[Some feedback please] -
Some feedback please
Discuss Some feedback please
Posted by: Magma
[b]Author:[/b] Magma
[b]Version:[/b] 1.0
[b]Description:[/b] This is a small console game for windows that allows the user to watch mini horse races over and over. These horses happen to be a happy Face.
[b]Download:[/b] [URL]http://www.mysticmagma.com/code/Horse Race.exe[/URL]
i just want some feed back on what you think, this is my first program i have made and i would like to know what you think.
Also
[b]Author:[/b] Magma
[b]Version:[/b] 1.0
[b]Description:[/b] This is a small console game for windows that allows the user to play black jack 21 with basic options and rules
[b]Download:[/b] [URL]http://www.mysticmagma.com/code/blackjack2.exe[/URL]
dont worry about bandwidth issues, the programs are less than 2mb and i have unlimted bandwidth with my host.
Thank you!
Posted by: Shroud
The blackjack game is nice but not fault tolerant.
Posted by: Magma
yes i have noticed a few bugs in the black jack as well
Posted by: þÄ®âÐÖx
Not bad for a first program, but like Shroud said the error handling isn't that great. For example, at the prompt "Would you like to hit or stay? (H/S):" if you enter anything but H or S the program just screws up. Generally you would make allowances for this in your code so that if someone pressed "i" by accident the program would say "Please enter H or S" or something like that.
Other than that, nice work - keep at it! :)
Posted by: Magma
o thats right! i fogot the
[code]
(Answer!='h') || (Answer!='H')||(Answer!='s')||(Answer!='S')
[/code]
DUH!
Posted by: MM
[QUOTE][i]Originally posted by Magma [/i]
[B]o thats right! i fogot the
[code]
(Answer!='h') || (Answer!='H')||(Answer!='s')||(Answer!='S')
[/code]
[/B][/QUOTE]
[code]
((toupper(Answer)!='H') && (toupper(Answer)!='S'))
[/code]
Posted by: Magma
thats to far out for me :p
we useing the LVP libarys for this so its pretty old
Posted by: randy
Yeah, those are really not bad at all if I do say so myself.