1~100까지 수 더하기
ex) 1~100까지 수 더하기 프로그램 static void Main(string[] args) { int sumFor = 0, sumWhile = 0, cntFor = 1, cntWhile = 1; Console.WriteLine("앙큼한유채 : for문 1~100까지 더하기"); for (cntFor = 1; cntFor sumFor = sumFor + cntFor;의 줄임말로서 sumFor에 cntFor 값을 더하여 저장합니다. 4. Console.WriteLine(sumFor); -> 반복문이 수행완료된 후 sumFor의 값을 출력합니다. 5. while (cntWhile cntWhile의 값이 100보다 작거나 같을 때 실행하도록 설정하였습니다. 6. sumWhile += cntWhile; -..
2017.01.20