提交时间:2024-01-20 14:59:45

运行 ID: 37418

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