/ /

记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Wrong Answer 1ms 400.0 KiB
#2 Wrong Answer 1ms 400.0 KiB
#3 Wrong Answer 1ms 328.0 KiB
#4 Wrong Answer 1ms 400.0 KiB

代码

#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
	float c;
	int a,i,b;
	cin>>c;
	a=floor(c);
	cout<<a<<".";
	for(i=1;i<=3;i++)
	{
		c*=10;
	}
	b=floor(c);
	cout<<b%1000;
}

信息

递交者
类型
递交
题目
P1041 输出保留3位小数的浮点数
题目数据
下载
语言
C++
递交时间
2021-08-15 14:52:18
评测时间
2021-08-15 14:52:18
评测机
分数
0
总耗时
6ms
峰值内存
400.0 KiB