《C++程序设计语言》6.6_16 包含数字的C风格字符串为参数, 返回与之对应的int值

/*-----------------------------------------------------
写一个函数atoi(const char*),它以一个包含数字的C风格字符串为参数,
返回与之对应的int值. 例如, atoi("123")应是123. 修改atoi(), 使
之除了能处理简单的十进制数之外, 还能处理C++的八进制和十六进制记法形式.
修改atoi()以处理C++的字符常量记法.
-----------------------------------------------------*/
#include <iostream>
#include <string>
#include <math.h>
using std::cout;
using std::cin;
using std::endl;
using std::string;
const int N = 20;
char* create()
{
	cout << "Please input a string of numbers(0~9):\n";
	char* cch = new char[N];
	int i = 0;
	char ch;
	for (; i < N-1; i++)
	{
		ch = cin.get();
		if (ch != '\n')
			cch[i] = ch;
		else
			break;
	}
	cch[i] = '\0';
	return cch;
}

void show(char* sch)
{
	cout << "Output the string:\n";
	puts(sch);
}

int atoi(char* ach)
{
	cout << "Converts a string to an integer:\n";
	int anum = 0;
	int l = strlen(ach);
	for (int i = 0; i < l; i++)
		anum += (ach[i]-48) * pow(10, l-i-1);
	cout << "How do you want to output the number(oct、dec or hex):\n";
	string str;
	cin >> str;
	if (str == "oct")
		cout << std::oct;
	else if (str == "hex")
		cout << std::hex;
	else
		cout << std::dec;
	return anum;
}

int  main()
{
	int num;
	char *ch;
	ch = create();
	show(ch);
	num = atoi(ch);
	cout << num << endl;

	return 0;
}



评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值