Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- expo
- nodejs
- 김골라
- S3
- EC2
- AWS CodeBuild
- 어셈블리어
- AWS
- C언어
- netlify variables
- AWS CodePipeline
- NODE_VERSION
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- rwdImageMaps
- CSS
- react
- ogr2ogr
- credential error
- 이미지 맵
- can't getting credentials
- 반응형 페이지 좌표 변환
- 설치완료안됨
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- 이미지 좌표 추출
- aws ec2
- node
- Error:error:0308010C:digital envelope routines::unsupported
- GeoJSON object too complex/large
- SASS
- Unable to find the global bin directory
Archives
- Today
- Total
ImFe's study
[C] 1008번 - A/B 본문
#include<stdio.h>
int main()
{
double a, b = 0;
scanf("%lf", &a);
scanf("%lf", &b);
printf("%.9lf", a/b);
return 0;
}
10^-9까지 허용한다 했으니 double형을 사용해야 한다.
printf("%.9lf", a/b); 는 a/b값을 소숫점 아래 9자리까지 표시한다는 의미이다
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 2588번 - 곱셈 (0) | 2020.12.08 |
---|---|
[C] 10869 - 사칙연산 (0) | 2020.12.08 |
[C] 10998번 - AxB (0) | 2020.12.07 |
[C] 1001번 - A-B (0) | 2020.12.07 |
[C] 1000번 - A+B (0) | 2020.12.07 |
Comments