J - VAT Man Gym - 102040J

Posted sutsuharayuki

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了J - VAT Man Gym - 102040J相关的知识,希望对你有一定的参考价值。

https://vjudge.net/contest/332199#problem/J

技术图片

水题,直接上代码

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<bitset>
#include<cassert>
#include<cctype>
#include<cmath>
#include<cstdlib>
#include<ctime>
#include<deque>
#include<iomanip>
#include<list>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<vector>
#include <vector>
#include <iterator>
#include <utility>
#include <sstream>
#include <limits>
#include <numeric>
#include <functional>
using namespace std;
#define gc getchar()
#define mem(a) memset(a,0,sizeof(a))
//#define sort(a,n,int) sort(a,a+n,less<int>())

#define ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int,int> pii;
typedef char ch;
typedef double db;

const double PI=acos(-1.0);
const double eps=1e-6;
const ll mod=1e9+7;
const int inf=0x3f3f3f3f;
const int maxn=1e5+10;
const int maxm=100+10;

bool compare(int a, int b)
{
    return a < b;//升序
}

int main()
{
    int t = 0;
    double p = 0;
    cin >> t;
    while(t--)
    {
        cin >>p;
        p*=1.15;
        printf("%.2f
",p);
    }
    return 0;
} 

 

 

以上是关于J - VAT Man Gym - 102040J的主要内容,如果未能解决你的问题,请参考以下文章

Gym 101102J---Divisible Numbers(反推技巧题)

gym 101412

2016 USP-ICMC-Codeforces-Gym101063C-Sleep Buddies Gym101063F-Bandejao Gym101063J-The Keys

Gym 100917J---dir -C(RMQ--ST)

gym103117J. Ants

[Gym-101981J] Prime Game (组合计数)