Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95644 Kevin 06小数除法 C++ Accepted 1 MS 276 KB 153 2024-11-01 15:12:19

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double x,y,r; int q; cin>>x>>y; q=x/y; r=x-q*y; printf("%.2lf",r); return 0; }