Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94842 贾雨泽 06整数除法 C++ Accepted 1 MS 272 KB 154 2024-10-26 14:46:56

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ double a,b; scanf("%lf",&a); scanf("%lf",&b); printf("%.5lf\n",a/b); }