내일배움캠프/걷기반

[내배캠][Unity_6기][과제] 7. 이름 입력 프로그램

binary는 호남선 2024. 8. 31. 15:28

이름 입력 프로그램

while (true)
{
    Console.WriteLine("이름을 입력해주세요. (3~10글자)");
    string input = Console.ReadLine();
    int length = input.Length;
    Console.Clear();

    if (length >= 3 && length <= 10)
    {
        Console.WriteLine("안녕하세요! 제 이름은 " + input + " 입니다.");
        return;
    }
    else
    {
        Console.WriteLine("이름을 확인해주세요.");
    }
}

- 반복 횟수가 정해져 있지 않으므로 while로 구현

- do while로도 구현 가능