UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#213045#1009. 退票费walle2012Judgement Failed//C++185b2024-11-04 22:18:072024-11-04 22:18:10

answer

#include <bits/stdc++.h>
using namespace std;
int main()
{
	double n; 
	scanf("%lf",&n);
	if(n<5.0)
	{
		printf("5");
	}
	else
	{
		printf("%.2f",n*0.95);
	}
	return 0;
}

详细

Failed to show details