1105 - 分数的浮点数值

#include<stdio.h>
int main()
{
	double a,b,c;
	scanf("%lf %lf",&a,&b);
	c=a/b;
	printf("%.5f",c);
	return 0;
}