This was fun, I think the hardest part for me was figuring out what I want to put as a method. As I am a fairly lazy person, if it is a program that I make solo; normally I just do everything in the button clicks when possible and hardly use methods. Although when working with others, I do appreciate methods since it can be easier to piece everything together and troubleshoot. Good luck everyone, if there's any trouble I'd be more than happy to point towards the right direction.
CONGRATULATIONS! Still working on mine. I've just been busy with so many other things. I'll let you know if I need any help. Thanks. :)
ReplyDeleteCongratulations! Honestly I haven't had much time (Mondays-Thursdays I have class on campus after work, and then have to take care of my kids so my wife can get her schoolwork done). I'll probably start on it Friday after work. I've drawn out pseudocode on the back of a napkin while at lunch, though - so I've at least thought about it ;-)
ReplyDeletePseudocode is definitely good. I kinda skip it as I kinda like to just work through with the idea in my head, yeah midterms is a busy week for most glad that we had 2 weeks for this project.
ReplyDeleteI think I have gotten mine all sorted out, I'm just working on displaying the winner message! Any help would be great. :)
ReplyDeleteI pretty much just used some code from the random number game.
ReplyDeleteif (MessageBox.Show("You won, would you like to play again?", "Win", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
computerChoice = rand.Next(1, 4);
}
else
{
this.Close();
}