일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 데이터 통신
- OS
- 러스트
- C
- 운영체제
- java
- 데이터베이스
- 파이썬 첼린지
- 자바 개념
- Python
- 파이썬 알고리즘
- Operating System
- ubuntu
- 백준
- 자바 기초
- Python challenge
- Database
- 자바
- 알고리즘
- Reversing
- 우분투
- 러스트 프로그래밍 공식 가이드
- 파이썬
- 러스트 예제
- 오라클
- data communication
- 오라클DB
- 백준 러스트
- Rust
- 파이썬 챌린지
- Today
- Total
목록Development Study (174)
IT’s Portfolio
Q1. 네 값의 최댓값을 구하는 함수 max4를 작성하세요. #include int max4(int a, int b, int c, int d) { int max = a; if (b > max) max = b; if (c > max) max = c; if (d > max) max = d; return max; } int main(void){ int a, b, c, d; printf("네 정수를 입력하세요.\n"); scanf_s("%d %d %d %d", &a, &b, &c, &d); int max = max4(a, b, c, d); printf("%d", max); return 0; } 실행화면 Q2. 세 값의 최솟값을 구하는 min3 함수를 작성하세요. #include int min3(int a, in..
Start!
print("세 정수의 최댓값을 구합니다.") a = input("1: ") b = input("2: ") c = input("3: ") max = a if b > max: max = b if c > max: max = c print("세 정수의 최댓값은", max, "입니다.") 1. a, b, c에 차례로 세 정수를 입력해 넣는다. 2. max에 a 값을 넣는다. 3. max의 값이 b의 값보다 작으면 max에 b 값을 넣는다. 4. max의 값이 c의 값보다 작으면 max에 c 값을 넣는다. 5. 세 정수의 최댓값 max를 출력한다.
public class Algorithm { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b, c; System.out.println("세 정수의 최댓값을 구합니다."); System.out.print("1 :"); a = sc.nextInt(); System.out.print("2 :"); b = sc.nextInt(); System.out.print("3 :"); c = sc.nextInt(); int max = a; if(b > max) { max = b; } if(c > max) { max = c; } System.out.println("세 정수의 최댓값은 " + max + "입니다."); ..
#include int main(void){ int a, b, c; printf("세 정수의 최댓값을 구합니다.\n"); printf("1: "); scanf_s("%d", &a); printf("2: "); scanf_s("%d", &b); printf("3: "); scanf_s("%d", &c); int max = a; if (max < b) { max = b; } if (max < c) { max = c; } printf("세 정수의 최댓값은 %d입니다.", max); return 0; } 1. a, b, c에 차례로 세 정수를 입력해 넣는다. 2. max에 a 값을 넣는다. 3. max의 값이 b의 값보다 작으면 max에 b 값을 넣는다. 4. max의 값이 c의 값보다 작으면 max에 c 값을..
threading => 하나의 프로세서 안에서 여러개의 루틴을 만들어 병렬적으로 실행 가능한 모듈. 즉, 단순 반복하는 작업을 분리하여 처리가 가능함. Thread의 구조는 아래 링크에서 직접 확인해보기 바란다. https://www.python-course.eu/threads.php Python Advanced: Threads and Threading Python Advanced Course Topics Threads in Python Definition of a Thread A Thread or a Thread of Execution is defined in computer science as the smallest unit that can be scheduled in an operating syst..
지난 1일에 지역별 코로나19 뉴스 정보 크롤링 프로그램을 만들었었다. 안보고 온 사람은 보고 오시길 ㅇㅇ;; ==> https://it-neicebee.tistory.com/49 [Python] 파이썬 웹 크롤링으로 지역별 코로나19 뉴스 정보를 크롤링해보자 지금까지 쳐놀고 다른 일 좀 하느라 글 업데이트가 뜸했음 ㅋㅋ 오늘은 네이버 뉴스에서 지역별 코로나19 뉴스를 크롤링해오는 프로그램을 제작해보자. 준비물 : 신승훈의 I believe를 들으면서 하도록 하자. 개.. it-neicebee.tistory.com 저 코드를 응용해서 json을 만들고 자동화까지 시켜보자. 준비물: 잔나비의 Good boy twist를 들으면서 하자. import import sys import json from bs4 ..
datetime => 날짜와 시간을 표현하는 모듈 datetime 모듈의 datetime 클래스를 알아보도록 하자. from datetime import datetime print(datetime.today()) from datetime import datetime print(datetime.now()) today() 함수와 now() 함수는 현재 시각을 나타낸다. from datetime import datetime now = datetime.now() print(now.year) print(now.month) print(now.day) print(now.hour) print(now.minute) print(now.second) print(now.microsecond) now() 함수나 today() ..