Posts by João Victor Carvalho • 77 points
5 posts
-
-3
votes2
answers121
viewsQ: Working with C#; images
So, I’m working on a hangman game, it’s almost ready. Still have to make the images appear via code. And that’s my problem. For example: I want that if the error is 1, the head appears and etc. You…
-
3
votes3
answers1491
viewsQ: How to replace the number of letters of a word with a character?
I’m doing a hangman’s game, let’s suppose I type the name "john" into a box of text, then I press a button and I want the "text 2" box to have "_ _ _", so I want the same number of underscore that…
-
0
votes1
answer73
viewsQ: How to make the computer choose between two Characters
Guys, I’m doing an old game in winforms in C#, however, I have a problem, is the following with me pressing the first button I want the computer to choose between "O" or "X", I tried to use the…
-
0
votes4
answers5555
viewsA: Determine the nth Fibonacci term with recursion
Man, have I ever had a hard time Fibonacci also, is the following, I recommend to create two variables, one that receives the current value and the other that receives the previous value and all…
-
3
votes2
answers1320
viewsQ: How to hide a password in C#
I want to hide my password. What I want to happen is that while I type " * " is shown instead of characters, the problem is that it only happens when I click on the "Log in". Yes, I know this…