首頁 > 後端開發 > C++ > C程式將一個數字轉換為字串

C程式將一個數字轉換為字串

PHPz
發布: 2023-08-25 18:17:13
轉載
1322 人瀏覽過

C程式將一個數字轉換為字串

在本節中,我們將了解如何將數字(整數或浮點或任何其他數字類型資料)轉換為字串。

邏輯非常簡單。這裡我們將使用 sprintf() 函數。此函數用於將某些值或行列印到字串中,但不在控制台中。這是 printf() 和 sprintf() 之間的唯一差異。這裡第一個參數是字串緩衝區。我們想要保存資料的地方。

Input: User will put some numeric value say 42.26
Output: This program will return the string equivalent result of that number like "42.26"
登入後複製

演算法

Step 1: Take a number from the user
Step 2: Create an empty string buffer to store result
Step 3: Use sprintf() to convert number to string
Step 4: End
登入後複製

範例程式碼

 即時示範

#include<stdio.h>
main() {
   char str[20];    //create an empty string to store number
   float number;
   printf("Enter a number: ");
   scanf("%f", &number);
   sprintf(str, "%f", number);   //make the number into string using sprintf function
   printf("</p><p>You have entered: %s", str);
}
登入後複製

輸出:

Enter a number: 46.3258
You have entered: 46.325802
登入後複製

以上是C程式將一個數字轉換為字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板