输入两个整数a和b,整数a和整数b,空格分隔,a/b的结果保留六位小数
int a,b; double c; scanf("%d%d",&a,&b); c=a*1.0/b; printf("%.6lf",c);