728x90 반응형 SMALL 전체 글80 CodeUp Python 기초 100제 6001-6025 코딩테스트 준비 및 기초를 한번더 다지기 위해서 python 기초 100제중 25문제를 풀었다.생각보다 기초적인데 생각안나는 것도 있어서 반성하는 시간이었음.... 2024. 12. 4. 반복문 1. "Hello" 3번 반복출력internal class Iteration{ static void Main(string[] args) { string word = "Hello!"; for(int i=0; i 2. 입력 숫자의 짝수합 구하기static void Main(string[] args){ Console.Write("Input Number : "); string num_str = Console.ReadLine(); int num = Convert.ToInt32(num_str); int total_even = 0; for (int i = 1; i 3. 피라미드 출력하기static void Main(string[] args){ .. 2024. 12. 4. 조건문 간단히 점수 입력해서 점수에 따른 결과를 출력하는 예제 internal class IfDemo{ static void Main(string[] args) { Console.WriteLine("Input Score(math)"); string math = Console.ReadLine(); int math_score = Convert.ToInt32(math); Console.WriteLine("Input Score(science)"); string science = Console.ReadLine(); int science_score = Convert.ToInt32(science); if(math_score 2024. 12. 4. 3D 머신비전 기술 2024. 12. 4. 조명의 역할 2024. 12. 3. 머신비전에서 렌즈의 역할, 데이터시트분석, 마운트, 이미지서클, FOV, wd, MTF 2024. 11. 26. 컬러 카메라, 노이즈, 카메라성능지표, 데이터 케이블, 프레임 그래버 2024. 11. 25. 머신비전의 구성 & 이미지 센서의 종류 2024. 11. 21. Gradient Descent 2024. 11. 18. 이전 1 2 3 4 ··· 9 다음 728x90 반응형 LIST