在C语言中,可以使用以下几种方法来取小数点后两位:
float num = 3.14159;
printf("%.2f", num); // 输出结果为 3.14
这种方法会将浮点数按照指定的格式化输出,保留两位小数。
float num = 3.14159;
char str[10];
sprintf(str, "%.2f", num);
printf("%s", str); // 输出结果为 3.14
这种方法将浮点数转换为字符串后,可以使用字符串处理函数来截取小数点后两位。
#include <math.h>
float num = 3.14159;
float result = floorf(num * 100) / 100;
printf("%.2f", result); // 输出结果为 3.14
这种方法先将浮点数乘以100,然后使用floor函数向下取整,再除以100,即可得到小数点后两位的值。
float num = 3.14159;
float result = (int)(num * 100) / 100.0;
printf("%.2f", result); // 输出结果为 3.14
这种方法先将浮点数乘以100,然后进行强制类型转换成整数,再除以100.0,即可得到小数点后两位的值。
需要注意的是,以上方法都是对浮点数进行截取或转换,结果将会是一个浮点数或字符数组(字符串)。