2015百度之星资格赛1003_IP聚合

前端之家收集整理的这篇文章主要介绍了2015百度之星资格赛1003_IP聚合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

///////////////////////////////////////////////////////////////////////////////////////////////////////
作者:tt267
声明:本文遵循以下协议自由转载-非商用-非衍生-保持署名|Creative Commons BY-NC-ND 3.0
转载请注明:http://www.jb51.cc/article/p-bjxelvsw-bkd.html
///////////////////////////////////////////////////////////////////////////////////////////////////////


题目链接http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?cid=584&pid=1003

一道水题,就是有点麻烦,慢慢码就好。。

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<algorithm>
#define INF 999999999
using namespace std;

double js1(int);
double js2(int);

int main()
{
    int n,Case,id=1;
    double res,ave;

    scanf("%d",&Case);

    while(Case--)
    {
        printf("Case #%d:\n",id++);
        scanf("%d",&n);
        printf("%.6lf %.6lf\n",js1(n)+1,js2(n));
    }
    return 0;
}

double js1(int n)
{
    return (double)(n-2)*19/27;
}

double js2(int n)
{
    return (double)(46-(double)38/n)/(19-(double)11/n);
}
原文链接:https://www.f2er.com/javaschema/284740.html

猜你在找的设计模式相关文章