C語言浮點型轉成字符串

代碼以下,code #include <stdio.h> #include <stdlib.h> int main() { float a = 18.9; //double型處理方式相同 char b[5]; sprintf(b,"%2.1f",a); //精度爲0.1 printf("%s\n",b); return 0; }
相關文章
相關標籤/搜索