码迷,mamicode.com
首页 > 编程语言 > 详细

C语言中数字转为字符串

时间:2020-06-20 18:58:30      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:sprintf   出现   mes   int   ring   and   tab   整型   标准   

  由于C语言中并不像C++、python、Java等已经集成好 string 类,因此使用“数组型字符串”的时候时常会出现问题。

  现在以标准c语言中的数字转换成字符串为例。直接上代码。

  

 1 #include<iostream>
 2 #include<string.h>
 3 using namespace::std;
 4 
 5 //sprintf 用于格式化输出字符串
 6 //假设现在有两个整型数据 183 70  我们想把它变为一个字符串 “身高:183cm,体重:70kg”,那么可以用sprintf做到
 7 
 8 int main()
 9 {
10     int height = 183, weight = 70;
11     char table_height_and_wight[100];
12     sprintf_s(table_height_and_wight, "身高:%dcm体重:%dkg", height, weight);
13     cout << table_height_and_wight << endl;
14     cout << strlen(table_height_and_wight) << endl;
15     return 0;
16 }

 

C语言中数字转为字符串

标签:sprintf   出现   mes   int   ring   and   tab   整型   标准   

原文地址:https://www.cnblogs.com/Rebel3/p/13169739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!