Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155248 周谨严 06小数除法 C++ Wrong Answer 0 MS 268 KB 127 2026-06-06 11:01:35

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ double a,b; int x,y; cin>>a>>b; x=a/b; printf("%.21",a-b*x); }


Run Info:

------Input------
69.1 88
------Answer-----
69.10
------Your output-----