博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4493 Tutor (水 精度)
阅读量:5316 次
发布时间:2019-06-14

本文共 968 字,大约阅读时间需要 3 分钟。

题意:

思路:

 

#include 
#include
#include
#include
using namespace std;int fa[150];int fin(int x){ return fa[x]==x?x:fin(fa[x]);}void unionn(int x,int y){ int fx=fin(x); int fy=fin(y); if(fx!=fy) { fa[fy]=fx; }}int main(){ int n,m,t; int i,j,k; double a,sum,now,num[15]; scanf("%d",&t); while(t--) { sum=0; for(i=0;i<12;i++) { scanf("%lf",&now); sum+=now; } sum/=12; sum*=1000; int ans=sum+5; ans/=10; double a; printf("$"); if(ans%10!=0) { a=ans*1.0; printf("%.2f\n",a/100); } else if(ans%100!=0) { a=ans*1.0; printf("%.1f\n",a/100); } else { printf("%d\n",ans/100); } } return 0;}

 

转载于:https://www.cnblogs.com/sola1994/p/4552835.html

你可能感兴趣的文章
简述HTML DOM及其节点分类
查看>>
js题集19
查看>>
程序设计中的感悟
查看>>
JDK中DNS缓存的分析
查看>>
Objective-C中的@property和@synthesize用法
查看>>
jsp连接数据库
查看>>
一位面试者提到直接调用vuex中mutations方法
查看>>
安装JDK
查看>>
semantic ui要装什么才能使用
查看>>
四叶草社交平台——十天冲刺(10)
查看>>
Linux 2.6 完全公平调度算法CFS(Completely Fair Scheduler)分析
查看>>
海量数据处理面试题集锦
查看>>
【设计模式】命令模式
查看>>
pyinstaller---将py文件打包成exe
查看>>
readonly和const的区别
查看>>
SSM框架搭建(四) springmvc和mybatis的配置
查看>>
UVa 11346 - Probability
查看>>
python数据类型之间的转换
查看>>
微软职位内部推荐-SDEII
查看>>
微软职位内部推荐-SENIOR SOFTWARE ENGINEER
查看>>