본문 바로가기
728x90
반응형
SMALL

전체 글83

[백준] 문제 #10926 #includeusing namespace std;int main(){ string A; cin >> A; cout 이거는 문제의 의도가 무엇이지...? 그저 출력? 2025. 8. 19.
[백준] 문제 #10869 #includeusing namespace std;int main(){ int A, B; cin >> A >> B; cout 2025. 8. 19.
#pragma once C/C++에서 헤더 파일이 한 번만 포함되도록 보장하기 위한 컴파일러 지시문 예시)// myclass.h#pragma onceclass MyClass {public: void hello();}; 2025. 4. 14.
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.
728x90
반응형
LIST