提交时间:2023-10-14 22:03:13

运行 ID: 28507

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