本文主要是介绍字符串数与整数的互相转化,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<iostream.h>
#include<stdio.h>
#include<stdlib.h>
//字符串数转换成整数
//减'0'再乘10累加的方法 字符串减'0'就会隐性转化成int类型的数
void myatoi(int &value, const char* str)
{
int i = 0;
while (str[i])
{
value = value * 10 + (str[i] - '0');
++i;
}
}
//整数转化成字符串数,
// 先加'0', 再逆序的方法。
//整数加'0'就会隐性转化成char类型的数
void myitoa(int value, char* str)
{
int i = 0, j = 0;
char temp[10];
while ( value )
{
temp[i] = value % 10 + '0';
++i;
value /= 10;
}
temp[i] = 0;
--i;
while ( i >= 0)
{
str[j] = temp[i];
--i;
++j;
}
str[j] = 0;
}
int main(void)
{
int num = 0, sum = 0;
int choose;
// char temp[7] = {'1', '2', '3', '4', '5', '/0'};
char temp[100];
char str[100];
cout << "***************************" << endl;
cout << "* 1、整数转化成字符串数 *" << endl;
cout << "* 2、字符串数转化成整数 *" << endl;
cout << "***************************" << endl;
cin >> choose;
switch (choose)
{
case 1:
{
cout << "Please ente a integer"<< endl;
cin >> num;
myitoa(num, str);
printf("string = %s/n", str);
break;
}
case 2:
{
cout << "Please enter a string data " << endl;
gets(temp);
myatoi(sum, temp);
printf("sum = %d/n", sum);
break;
}
default:
{
exit(1);
}
}
return 0;
}
这篇关于字符串数与整数的互相转化的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!