码迷,mamicode.com
首页 > 其他好文 > 详细

输出带固定小数位数的浮点类型

时间:2020-03-05 01:07:16      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:syn   案例   ace   efi   结果   ios   fine   abs   style   

一个题案例过不了,结果是因为,cout输出科学计数法了。

那么这样写就好了

#include<bits/stdc++.h>
#define N 105 
#define endl ‘\n‘ 
#define _for(i,a,b) for(int i=a;i<b;i++)
using namespace std;
typedef long long ll;
int main(){
    ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
    int n,len; int res = 0;
    cin>>n>>len;
    vector<int> a(n); 
    for( int & i : a) cin>>i; 
    sort(a.begin(),a.end()); 
    _for(i,0,n-1){ 
        if( a[i]==a[i+1] ) continue; 
        res = max(res,abs(a[i+1]-a[i]) ) ;
    }
    res = max( res,2*a[0] );
    res = max( res,2*(len-a[n-1]) );
    cout<<fixed<< setprecision(9) << res/2.0 <<endl;
    return 0;
} 

 

输出带固定小数位数的浮点类型

标签:syn   案例   ace   efi   结果   ios   fine   abs   style   

原文地址:https://www.cnblogs.com/SunChuangYu/p/12417027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!