using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Loop_02 { internal class Loop_02 { static void Main(string[] args) { string str = "홍길동"; foreach (var st in str) { Console.WriteLine(st); } bool b = false; //무한반복문 //while (true) { }; //for (;;); //접근할수 없는 코드 //이중반복문 int num = 1; for (int i = 0; i < 3; i++) { //행--3행 for ..