Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6872 邓小龙 06小数除法 C++ Accepted 0 MS 264 KB 216 2025-03-22 20:23:22

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; //1.求a中包含了几个b int c; c=a/b; double d; d=a-c*b; printf("%.2lf\n",d); return 0; }