일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CNF
- Contradiction
- truth table
- 명제 동치
- Digital Logic Circuits
- relationaldatabaseschema
- half adder
- 이진법 십진법 변환
- cnn
- Binary notation
- 모두의네트워크정리
- Tautology
- Circuit
- dnf
- 모두의네트워크요약
- Gate
- Decimal notation
- 명제
- full adder
- 항진명제
- 써킷
- 십진법
- Sentiment Analysis
- GPT-1
- 모두의네트워크
- 모순명제
- Logical statement
- statement equivalence
- 진리표
- ermodel
- Today
- Total
목록Algorithm in C/백준 알고리즘 (5)
NLP Learner in Switzerland
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창) * VS code를 사용하고 있어서 scanf_s는 모두 scanf로 바꿔 제출했습니다. 10818 최소, 최대 #include int main() { int N,i,n; scanf("%d", &N); int min = 1000000, max = -1000000; for (i = 0; i = max) { max = n; } if (n = max) { max = array[i]; index = i; } } printf("%d\n%d", max,index+1); } - for문으로 배열의 원소를 차례대로 입력받을 수 있다. 2577 숫자의 갯수 #include int main() { int ..
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창) 10952 A+B-5 #include int main() { int A, B; while (1) { scanf("%d %d", &A, &B); if (A == 0 && B == 0) { break; } printf("%d\n", A + B); } return 0; } - 특정 조건을 만족할 때까지 계속 입력받으려면 while (1) + if (조건) break 조합으로 사용하면 된다. 10951 A+B-4 *** 잘못된 풀이 #include int main() { int A, B; while (scanf("%d %d", &A, &B)==1) { printf("%d\n", A + B); } return 0; } - 계속 입력 받는다길래 while문에다가..
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창) 2739 구구단 #include int main() { int N, i; scanf("%d", &N); for (i = 1; i
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창) 1330 두 수 비교하기 #include int main() { int A, B; scanf("%d %d", &A, &B); if (A > B) { printf(">"); } else if (A < B) { printf("
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창) 2557 Hello World #include int main(){ printf("Hello World!"); } 10718 We love kriii #include int main() { printf("강한친구 대한육군\n"); printf("강한친구 대한육군"); } 10171 고양이 #include int main() { printf("\\ /\\\n ) ( ')\n( / )\n \\(__)|"); } - 역슬래시(\)를 출력하려면 \\로 입력해야 한다. 10172 개 #include int main() { printf("|\\_/|\n|q p| /}\n( 0 )\"\"\"\\\n|\"^\"` |\n||_/=\\\\__|"); } - 쌍따옴표("..