在keil中如何将浮点数转换为字符串保存在数字中,通常可以用C语言里的gcvt()函数,但是由于keil中的stdlib.h头文件中并没有这个函数,所以用sprintf()函数来实现。
#include<stdio.h> #include <stdlib.h> void main (void) { float num = 2.52; char str[25]; sprintf(str, " %0.2f" , num); //如果要转换整形的树,就把%0.2f改为%d;str是你用来保存转换结果的数组,num是你要转换的数据 printf ("The number 'num' is %0.2f and the string 'str' is %s. \n" ,num, str); }