// SCU's Bathhouse.cpp : 定义控制台应用程序的入口点。
//
//#include "stdafx.h"
#include<iostream>
#include<cstdio>
using namespace std;
//int _tmain(int argc, _TCHAR* argv[])
int main()
{
int Case, n;
cin >> Case;
while( Case-- ){
cin >> n;
double ans = 0;
if( n <= 10 )
ans = 1;
else{
ans = 1 + ( n - 10 ) * 0.15;
}
printf( "%.2f\n", ans );
}
return 0;
}
SCU's Bathhouse
最新推荐文章于 2014-02-05 16:57:27 发布