반복문
-
2/23 : TIL | 제어문 조건문(선택문) if, switch 날씨 알려주기 / 반복문 for 1부터 100까지 짝수의 합Today I Learned/C# 2023. 2. 24. 08:20
제어문 Control Statement Loop - 조건문(선택문): if, else, switch, - 반복문: for, foreach, while, do, - 기타: break, continue, goto 조건문: if //if~else class IfElse { static void Main(string[] args) { int score = 55; if (score >= 60) { Console.WriteLine("A"); } else if(score >=50) { Console.WriteLine("B"); } else { Console.WriteLine("F"); } } } 조건문: switch 선택문 - 여러 개의 선택이 필요할 때, 다양한 조건 -(실습) 사용자에게 날씨 입력받아 출력값 주기..