#include<iostream> using namespace std; int main() { long double a,b,c; cin>>b>>c; a=b/c; printf("%.9lf",a); }
无论输入什么这都会输出-0.000000000,这是为什么???