Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 모순명제
- GPT-1
- 항진명제
- Contradiction
- relationaldatabaseschema
- 명제
- Digital Logic Circuits
- 진리표
- dnf
- Decimal notation
- Tautology
- full adder
- ermodel
- Binary notation
- 이진법 십진법 변환
- 명제 동치
- Logical statement
- 모두의네트워크
- CNF
- truth table
- Circuit
- half adder
- 모두의네트워크정리
- cnn
- 모두의네트워크요약
- 십진법
- statement equivalence
- Gate
- 써킷
- Sentiment Analysis
Archives
- Today
- Total
NLP Learner in Switzerland
[C] 백준 단계별로 풀어보기 2단계 if문 5문제 본문
728x90
반응형
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창)
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
if (A > B) {
printf(">");
}
else if (A < B) {
printf("<");
}
else {
printf("==");
}
}
#include <stdio.h>
int main() {
int score;
scanf("%d", &score);
if (score>=90 && score<=100) {
printf("A");
}
else if (score >=80) {
printf("B");
}
else if (score >= 70) {
printf("C");
}
else if (score >= 60) {
printf("D");
}
else {
printf("F");
}
}
#include <stdio.h>
int main() {
int year;
scanf("%d", &year);
if (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)) {
printf("1");
}
else {
printf("0");
}
}
#include <stdio.h>
int main() {
int x,y;
scanf("%d\n%d",&x,&y);
if (x > 0 && y > 0) {
printf("1");
}
else if (x < 0 && y>0) {
printf("2");
}
else if (x < 0 && y < 0) {
printf("3");
}
else if (x > 0 && y < 0) {
printf("4");
}
}
#include <stdio.h>
int main() {
int H,M;
scanf("%d %d",&H,&M);
if (H > 0) {
if (M >= 45) {
printf("%d %d", H, M - 45);
}
else {
printf("%d %d", H - 1, M + 15);
}
}
else {
if (M >= 45) {
printf("%d %d", H, M - 45);
}
else {
printf("%d %d", 23, M + 15);
}
}
}
'Algorithm in C > 백준 알고리즘' 카테고리의 다른 글
[C] 백준 단계별로 풀어보기 5단계 1차원 배열 7문제 (0) | 2021.04.12 |
---|---|
[C] 백준 단계별로 풀어보기 4단계 while문 3문제 (0) | 2021.04.11 |
[C] 백준 단계별로 풀어보기 3단계 for문 11문제 (0) | 2021.04.09 |
[C] 백준 단계별로 풀어보기 1단계 입출력과 사칙연산 11문제 (0) | 2021.04.07 |
Comments