其他分享
首页 > 其他分享> > 练习题2021111801

练习题2021111801

作者:互联网

编写一个C函数,实现保留小数点后第N-1位,从第N位四舍五入。用该函数对数组a[5]中的各元素从小数点后第2位开始四舍五入。
a[5]={2.33,2.56,2.65,2.66,2.30}
**输出格式要求:"Old array:\n"   "a[%d]=%.3f\t"  "\nnew array:\n"  "a[%d]=%.2f\t"
程序运行示例如下:
Old array:
a[0]=2.330      a[1]=2.560      a[2]=2.650      a[3]=2.660      a[4]=2.300

new array:
a[0]=2.30       a[1]=2.60       a[2]=2.70       a[3]=2.70       a[4]=2.30
————————————————————————————————————————————————————————————————————————————————————————————————————————

#include <stdio.h>
#include <math.h>
float a[5] = {2.33, 2.56, 2.65, 2.66, 2.30};
float t(float x,int n)
{
float x1, x2;
int i;
for (x1 = x, i = 0; i < n - 1; i++)
x1 *= 10.0;
x2 = floor((double)x1);
x1 = floor((double)(x1 - x2) * 10);
if (x1 >= 5)
x2 += 1;
for (i = 0; i < n - 1; i++)
x2 /= 10.0;
return x2;
}
main()
{
int i;
printf("Old array:\n");
for (i = 0; i < 5; i++)
printf("a[%d]=%.3f\t", i, a[i]);
printf("\nnew array:\n");
for (i = 0; i < 5; i++)
printf("a[%d]=%.2f\t", i, t(a[i], 2));
}

标签:练习题,%.,2.30,2021111801,printf,x2,array,x1
来源: https://www.cnblogs.com/1262816718joy/p/15574061.html