Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
123013 刘嘉乐 计算分数的值 C++ 无测评数据 0 0 MS 0 KB 164 2024-01-22 17:06:15

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; }