전체 글 (75) 썸네일형 리스트형 Intouch 알람 세팅 Alarm 알람 그룹 만들기 C# 100점만점 if if 사용시 using System; namespace Season { class Program { static void Main(string[] args) { int x = 100; if(x==100) {Console.WriteLine("만점"); } else {Console.WriteLine("노력");} Console.WriteLine(); } } } -> 복잡함 조건 ? 를 사용 using System; namespace Season { class Program { static void Main(string[] args) { int x = 100; Console.WriteLine((x==100)?"만점":"노력"); } } } 로 줄일 수 있음 C# 이름 바꾸기 폴더명 바꾸기 폴더명 변경 -> 프로젝트 새로 열때 에러가 남 바뀐 폴더명으로 인해 열리지 않음 속성에 들어가서 폴더명 변경 이전 1 ··· 19 20 21 22 23 24 25 다음