What's new

C# Help po dito sa code wala ako background sa c# kakaturo lang last week

Babayaga023

Leecher
Joined
Jun 18, 2022
Posts
1
Reaction
0
Points
2
create a guessing word game as a windows application that will perform the following: the user will enter his/her guessed word in a textbox and use the button to check if the word in the textbox matches the word to guess

View attachment 2217285
 
Code:
START
   DECLARE
     Guess=0
     MagicNum = 99
   //get input from textbox and convert to int
   //using parse
   GET Guess
   IF Guess is equal to MagicNum
      DISPLAY "You picked the correct number"
   ELSE
     DISPLAY "Wrong Guess" 

END
 
Back
Top