C#언어 공부_ While문_단어 맞추기 Game 프로그래밍


C#언어 공부_ While문_단어 맞추기 Game 프로그래밍

C# While문을 사용한 단어 맞추기 Game 프로그래밍 1. 기본프로그램 세팅 Step1(input): 목표 단어설정, 단어입력 화면 Step2(progress): while 문을 이용한 입력한 단어와 목표단어 비교 Stop3(output): 목표단어가 맞으면 화면에 표기 // Building Guess Game (while statement) using System; namespace test001 { public class test001 { static void Main(string[] args) { string secretWord = "bluesky"; // Secret Word를 설정 string guess = ""; // guess 항목 while (guess != secretWord) //..


원문링크 : C#언어 공부_ While문_단어 맞추기 Game 프로그래밍