Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5137 翟** 06整数除法 C++ Accepted 3 MS 208 KB 157 2024-11-02 17:49:10

Tests(10/10):


Code:

#include<cstdio> using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); double c=a*1.0/b; printf("%.5lf",c); return 0; }