using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { internal class Program { static void Main(string[] args) {//출력하기전에 결과를 예상해보자 //메모리에 저장하기 위해 변수를 사용 string characterName = "홍길동";//변수에 값을 string type으로 저장: 변수를 선언하고 값을 할당 //변수의 초기화 Console.WriteLine("이름: "+characterName);//변수에 저장된 값 출력 int level; //int 형 변수 선언..