question archive 1)Write a program that takes three numbers as input write it on a file and then read from the file, convert them into character and print it
Subject:Computer SciencePrice: Bought3
1)Write a program that takes three numbers as input write it on a file and then read from the file, convert them into character and print it.
2)Write a program that take string as an input attempting to guess the secret word enters letters one at a time. After each guess, the guess template is updated (if necessary) to show which letters in the secret word match the letter guessed. This process continues until the guess template matches the secret word choice of 7 wrong attempts. The number of guesses is then output. For example:
Enter the secret word: test
----
Guess a letter: a
----
Guess a letter: e
-e--
Guess a letter: n
-e--
Guess a letter: s
-es-
Guess a letter: t
test=test
You guessed the word in 5 guesses.