C++中 ,不存在从 "std::string" 到 "int" 的适当转换函数。

将vector类型中的字母转换成大写出现不存在从 "std::string" 到 "int" 的适当转换函数(C++primer中的练习题)

错误的做法:

#include 
#include 
#include 
using namespace std;



int main()
{   
	string word;
	vector  text;
	while (cin >> word)
	{
		text.push_back(word);
	}
	for (auto &c : text)
	{
		c = toupper(c);
	}
	for (auto c : text)
	{
		cout << i;
	}

    return 0;
}

该段代码中试图直接使用toupper函数来进行字母大小写的转换。但是,该函数每次只能转换一个字母,因此会报错。

正确的做法:

  

#include 
#include 
#include 
using namespace std;



int main()
{   
	string word;
	vector  text;
	int i, j;
	while (cin>> word)
	{
		text.push_back(word);
	}
	for (i = 0;i < text.size();i++)
	{
		for (j = 0;j < text[i].size();j++)
		{
			text[i][j] = toupper(text[i][j]);
		}
	}
	for (i = 0;i < text.size();i++)
	{
		cout << text[i] << endl;
	}
    return 0;
}
现在把每个单词当做一个字符串组,再在组内应用toupper函数进行大小写的转换。

你可能感兴趣的:(C++学习笔记)