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
- 항진명제
- ermodel
- Binary notation
- 십진법
- truth table
- Sentiment Analysis
- 이진법 십진법 변환
- 모두의네트워크
- Logical statement
- 모두의네트워크정리
- 명제 동치
- GPT-1
- 명제
- 모두의네트워크요약
- cnn
- half adder
- Tautology
- 써킷
- dnf
- Decimal notation
- Contradiction
- 진리표
- relationaldatabaseschema
- Digital Logic Circuits
- 모순명제
- full adder
- CNF
- Circuit
- Gate
- statement equivalence
Archives
- Today
- Total
NLP Learner in Switzerland
[C] 백준 단계별로 풀어보기 1단계 입출력과 사칙연산 11문제 본문
728x90
반응형
* 문제번호를 클릭하면 해당 문제로 이동합니다(새창)
#include <stdio.h>
int main(){
printf("Hello World!");
}
#include <stdio.h>
int main() {
printf("강한친구 대한육군\n");
printf("강한친구 대한육군");
}
#include <stdio.h>
int main() {
printf("\\ /\\\n ) ( ')\n( / )\n \\(__)|");
}
- 역슬래시(\)를 출력하려면 \\로 입력해야 한다.
#include <stdio.h>
int main() {
printf("|\\_/|\n|q p| /}\n( 0 )\"\"\"\\\n|\"^\"` |\n||_/=\\\\__|");
}
- 쌍따옴표(")를 입력하려면 \"로 입력해야 한다.
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
printf("%d", A + B);
}
- Visual Studio에서는 scanf_s로 해야 출력이 되는데 백준사이트에서는 안 먹혀서 scanf로 해야한다.
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
printf("%d", A - B);
}
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
printf("%d", A * B);
}
#include <stdio.h>
int main() {
double A, B;
scanf("%lf %lf", &A, &B);
printf("%.9lf", A / B);
}
- 간단하다고 개무시했다가 여러번 틀렸다. 변수타입 선언할 때 주의해야 한다. float는 오차를 10^(-7)까지만 허용하고 double은 10^(-15)까지 허용하기 때문에 double을 써주어야 하며, 출력시에도 소수점 9자리까지는 최소한 나타내주어야 한다.
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
printf("%d\n%d\n%d\n%d\n%d", A+B,A-B,A*B,A/B,A%B);
}
#include <stdio.h>
int main() {
int A, B, C;
scanf("%d %d %d", &A, &B, &C);
printf("%d\n%d\n%d\n%d", (A+B)%C,((A%C)+(B%C))%C, (A*B)%C, ((A%C)*(B%C))%C);
}
#include <stdio.h>
int main() {
int A, B;
scanf("%d", &A);
scanf("%d", &B);
int a = A * (B % 10);
int b = A * ((B % 100)/10);
int c = A * (B/100);
int d = A * B;
printf("%d\n%d\n%d\n%d", a,b,c,d);
}
'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] 백준 단계별로 풀어보기 2단계 if문 5문제 (0) | 2021.04.08 |
Comments