일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Rust
- 자바
- 자바 기초
- 파이썬
- OS
- 오라클DB
- 데이터베이스
- Operating System
- 백준 러스트
- 러스트 프로그래밍 공식 가이드
- 백준
- Database
- java
- Python challenge
- Python
- 러스트 예제
- 운영체제
- Reversing
- 알고리즘
- data communication
- 자바 개념
- 오라클
- ubuntu
- C
- 러스트
- 데이터 통신
- 파이썬 첼린지
- 파이썬 알고리즘
- 우분투
- 파이썬 챌린지
- Today
- Total
목록C언어 (4)
IT’s Portfolio
💻 자료구조와 알고리즘 - Day 1편입 준비로 인한 기초 다지기 기록 Start!🤔 기본 알고리즘1️⃣ 알고리즘이란?세 값의 최댓값#include int main(void) { int a, b, c, max; printf("세 정수의 최댓값을 구합니다.\n"); printf("a: "); scanf("%d", &a); printf("b: "); scanf("%d", &b); printf("c: "); scanf("%d", &c); max = a; if(b>max) max = b; if(c>max) max = c; printf("세 정수의 최댓값은 %d입니다.\n", max); return 0;}3개의 정수 값 가운데 최댓값 구하기1. max에 a..
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..
#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 값을..
Start!