1008번 작성일 2020-04-07 Edited on 2022-12-26 In Computer , Algorithm , BaekJun Disqus: Symbols count in article: 54 Reading time ≈ 1 mins. 문제두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. 입력첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) 출력첫째 줄에 A/B를 출력한다. 절대/상대 오차는 10-9 까지 허용한다. 1234567#include<stdio.h>int main(){ double a,b; scanf("%lf %lf",&a,&b); printf("%.9f\n",(double)a/b);}