我正在解决我遇到的问题:
用户输入列表中的名称数,然后输入名称。然后我必须更改字符串,以便每个名称都有第一个字符大写,其余字母应该是低位字母。
如果输入的名称如下:
2 EliZAbetH paUL
输出应该是这样的:
Elizabeth Paul
这是我尝试过的:
#include <iostream>
#include<string>
#include <cctype>
#include <stdio.h>
#include <ctype.h>
using namespace std;
const int FYLKJASTAERD = 100;
int main()
{
int FjoldiOrd = 0;
//get the number of students
cout << "Enter the number of students: ";
cin >> FjoldiOrd;
string Nofn[FYLKJASTAERD];
//get student names
for (int i=0; i<FjoldiOrd; i++)
{
cin >> Nofn[i];
if (Nofn.length()>0)
{
Nofn[0] = std::toupper(Nofn[0]);
for (size_t i = 1; i < Nofn.length(); i++)
{
Nofn[i] = std::tolower(Nofn[i]);
}
}
}
cout << Nofn[i] << endl;
return 0;
}
程序没有编译,它给了我这个错误:
request for member lenght in Nofn which is of non-class type 'std::string[100]
能不能给我一些指示我做错了什么?
我只使用输入名称做了一个更简单的版本,并且工作正常。
string name;
cout << "Please enter your first name: ";
cin >> name;
if( !name.empty() )
{
name[0] = std::toupper( name[0] );
for( std::size_t i = 1 ; i < name.length() ; ++i )
name[i] = std::tolower( name[i] );
}
cout << name << endl;
return 0;
}
答案 0 :(得分:2)
代码:
string Nofn[FYLKJASTAERD];
是一个字符串数组。所以你需要添加一个[index]来获取字符串。
因此,您无法询问Nofn的长度。
你可以这样做
Nofn[i].length();
获取字符串数组中位置i的字符串长度。
此外,您使用变量名称i两次。这非常糟糕。
也许这会更好(但我自己没有尝试过):
//get student names
for (int i=0; i<FjoldiOrd; i++)
{
cin >> Nofn[i];
if (Nofn[i].length()>0)
{
Nofn[i][0] = std::toupper(Nofn[i][0]);
for (size_t j = 1; j < Nofn[i].length(); j++)
{
Nofn[i][j] = std::tolower(Nofn[i][j]);
}
}
}
cout << Nofn[i] << endl;
<强>然而... 强>
我不认为你的程序完全符合你的要求。 cin到一个字符串将停在一个空格,所以你将获得中继的名称 - 而不只是一个名称的字符串。要获取包含空格的名称,请使用以下格式:
string name;
getline(cin, name);
这会使您的大写/小写代码复杂化,因为您必须检测空格。也许这可以做到:
#include <iostream>
#include<string>
#include <cctype>
#include <stdio.h>
#include <ctype.h>
using namespace std;
void fixString(string& s)
{
bool doUpperCase = true;
for (int i=0; i < s.length(); i++)
{
if (s[i] == ' ')
{
doUpperCase = true;
}
else
{
if (doUpperCase)
{
s[i] = std::toupper(s[i]);
doUpperCase = false;
}
else
{
s[i] = std::tolower(s[i]);
}
}
}
}
const int FYLKJASTAERD = 100;
int main()
{
int FjoldiOrd = 0;
//get the number of students
cout << "Enter the number of students: ";
cin >> FjoldiOrd;
while (cin.get() != '\n')
{
continue;
}
string Nofn[FYLKJASTAERD];
//get student names
for (int i=0; i<FjoldiOrd; i++)
{
getline(cin, Nofn[i]);
fixString(Nofn[i]);
cout << Nofn[i] << endl;
}
return 0;
}