题目:http://acm.hdu.edu.cn/showproblem.php?pid=4493 给你十二个月的工资,算平均数,保留两位,去除末尾的0 使用暴力解决,嘻嘻,但是这题主要是在进位这个地方要处理好,由于 要去除末尾0,采用一个数组来保存小数点后面的数, 当要进位时,从未到头查看是否是要进位 最后将整数部分输出,然后输出小数部分(满足要求的小数位输出) 代码: #include <stdio.h> int main() { double x,sum; int t,i,j; scan…