
C# 개인 학습 및 팀 프로젝트 https://www.udemy.com/course/the-complete-c-sharp-developer-course/Section 2 마무리 Assignments 3개를 진행했다. Assignment 1string name;int age = 0;Console.WriteLine("What is your name?");name = Console.ReadLine();Console.WriteLine($"Nice to meet you {name}. My name is Younga. How old are you?");do{ string input = Console.ReadLine(); if (int.TryParse(input, out age)) { C..