Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
91956
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
91956
胡玄善
06小数除法
Python3
Accepted
44 MS
3756 KB
86
2024-09-26 19:19:11
Tests(10/10):
Code:
s=input().split() a=float(s[0]) b=float(s[1]) c=a%b d="{:.2f}".format(c) print(d)