Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
123010 刘嘉乐 计算分数的值 C++ No Test Data 0 0 MS 0 KB 164 2024-01-22 17:05:58

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; double sum = a*1.0/b; cout<<fixed<<setprecision(9)<<sum<<endl; return 0; }