码迷,mamicode.com
首页 > 其他好文 > 详细

字符串与数字之间的转换

时间:2014-07-16 21:28:56      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:blog   color   os   文件   for   io   

1. itoa

itoa是广泛应用的非标准c语言扩展函数,头文件为 #icnlude<stdlib.h>

char* itoa(int value,char* string,int radix);

#include<iostream>
#include<cstdlib>

using namespace std;

int main(){
	int i=15;
	char str[25];
	itoa(i,str,16);
	cout<<str<<endl;

	return 0;
}

 

2. sprintf

C的库函数,头文件#include<stdlib.h>

int sprintf( char *buffer, const char *format, [ argument] … );

#include<stdio.h>
#include<stdlib.h>
int main()
{
	char buffer[50];
	int n,a=5,b=3;

	n = sprintf(buffer,"%dplus%dis%d",a,b,a+b);

	printf("[ %s ] is a string %d chars long\n",buffer,n);/*“格式输出”*/
	 
	return 0;
}

 

3.atoi

C库函数,#icnlude<stdlib.h>

int atoi(const char *nptr);

#include<stdlib.h>
#include<stdio.h>

int main(void)
{
	double n;
	char*str="12345.67";
	n=atoi(str);
	printf("string=%s integer=%d\n",str,(int)n);
	return 0;
}

4. atoi的一个实现

#include <iostream>
using namespace std;

void main(void){
	char str[20];      
	int i,n=0;	

	cout<<"Enter the string:";         
	cin.getline(str,20,‘\n‘);
	
    for (i=0; str[i] != ‘\0‘; i++) 
		n = n*10+(str[i]-‘0‘);

	cout<<"Corresponding number is "<<n<<endl;

    cout<<"The digits of the number from low to high is ";
	while(n){
		cout<<n%10<<‘,‘;   
		n/=10;
	}
	cout<<endl;
}

  

字符串与数字之间的转换,布布扣,bubuko.com

字符串与数字之间的转换

标签:blog   color   os   文件   for   io   

原文地址:http://www.cnblogs.com/sjw1357/p/3836086.html

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