Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4751 陆若涵 06整数除法 C++ Accepted 0 MS 256 KB 161 2024-09-14 21:00:46

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ //float a; //a=1.23456; //printf("%.2f",a); float a,b; cin>>a>>b; printf("%.5f",a/b); }