我是靠谱客的博主 鲜艳钢铁侠,最近开发中收集的这篇文章主要介绍华为笔试题-进制转换,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

写出一个程序,接受一个十六进制的数值字符串,输出该数值的十进制字符串。(多组同时输入 )
输入描述:
输入一个十六进制的数值字符串。
输出描述:
输出该数值的十进制字符串。

输入例子1:
0xA
输出例子1:
10

//最开始写的

#include<iostream>
#include <math.h>
#include <string>
#include <vector>
using namespace std;

int main()
{
	string str;
	while (cin >> str)
	{
		if (str[0] == '0' && str[1] == 'x')
		{
			string newStr;
			auto it = str.begin() + 2;
			while (it != str.end())
			{
				newStr.push_back(*it);
				it++;
			}
			str.clear();
			reverse(newStr.begin(), newStr.end());

			vector<int> ivec;
			it = newStr.begin();
			while (it != newStr.end())
			{
				if (*it >= '0' && *it <= '9')
				{
					ivec.push_back((*it - '0'));
				}
				else if (*it >= 'A' && *it <= 'F')
				{
					ivec.push_back((*it - 'A') + 10);
				}
				else if (*it >= 'a' && *it <= 'f')
				{
					ivec.push_back((*it - 'a') + 10);
				}
				++it;
			}

			int sum = 0;//数值型局部变量要赋初值!!!
			for (int i = 0; i<ivec.size(); ++i)
			{
				sum += ivec[i] * (int)(pow(16, i));
			}

			cout << sum << endl;
		}

	}

	return 0;
}

//改进

#include<iostream>
#include <math.h>
#include <string>
#include <vector>
using namespace std;

int main()
{
	string str;
	while (cin >> str)
	{
		if (str[0] == '0' && str[1] == 'x')
		{
			string newStr = str.substr(2);
			vector<int> ivec;
			int sum = 0;//数值型局部变量要赋初值!!!
			auto it = newStr.begin();
			while (it != newStr.end())
			{
				int temp = 0;
				if (*it >= '0' && *it <= '9')
				{
					temp = *it - '0';
				}
				else if (*it >= 'A' && *it <= 'F')
				{
					temp = *it - 'A' + 10;
				}
				else if (*it >= 'a' && *it <= 'f')
				{
					temp = *it - 'a' + 10;
				}

				sum = sum * 16 + temp;
				++it;
			}
			cout << sum << endl;
		}

	}

	return 0;
}

最后

以上就是鲜艳钢铁侠为你收集整理的华为笔试题-进制转换的全部内容,希望文章能够帮你解决华为笔试题-进制转换所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部