您好我正在尝试编写一个c ++程序,其中用户将输入一个名称,例如:Tahmid Alam Khan Rifat和计算机将打印该名称的格式化版本,在这种情况下将是:TAK Rifat先生。我已经包含了以下代码。你将能够看到我接近但仍然不是我想要的。请帮忙。
#include<iostream>
#include<string>
using namespace std;
class myclass{
private:
string name,temp;
string p;
int i,j,sp;
public:
void work(){
cout << "Enter the name of the male student: ";
getline(cin,name);
cout << endl;
cout << "The original name is: ";
cout << name;
cout << endl << endl;
cout << "The formatted name is: " << "Mr." << name[0] << ".";
for(i=0;i<name.size();i++){
if(name[i]==' '){
sp=i;
for(j=sp+1;j<=sp+1;j++){
temp=name[j];
cout << temp << ".";
}
}
}
for(i=sp+2;i<name.size();i++){
cout << name[i];
}
cout << endl;
}
};
int main(){
myclass c;
c.work();
}
答案 0 :(得分:1)
我希望这有帮助:) 它可能是一个更简单的版本(最初我用C编写它,你可以很容易地将它转换为C ++,因为逻辑保持不变)。 我已接受名称,然后在字符串的开头插入一个空格,在结尾处插入一个空格,然后在NULL字符(&#39; \ 0&#39;)
之前插入程序检查空间。 当遇到一个时,它会检查字符串中出现的下一个空格。 现在这个空间的出现有助于我们确定下一步应该是什么的重要决定因素。
请参阅,如果此后续空格后面有空字符,那么我们可以得出结论,后续空格是我们在字符串末尾插入的空格。 也就是说,在姓氏之前的主要空间之后发生的空间。答对了! 您可以从姓氏开始获得数组的精确索引! :d
看起来很长,但很简单。祝你好运!
#include<stdio.h>
#include<string.h>
void main()
{
char str[100]; /*you could also allocate dynamically as per your convenience*/
int i,j,k;
printf("Enter the full name: ");
gets(str);
int l=strlen(str);
for(i=l;i>=0;i--)
{
str[i+1]=str[i]; //shifting elements to make room for the space
}
str[0]=' '; //inserting space in the beginning
str[l+1]=' '; str[l+2]='\0'; //inserting space at the end
printf("The abbreviated form is:\n");
for(i=0;i<l+1;i++) //main loop for checking
{
if(str[i]==' ') //first space checker
{
for(j=i+1; str[j]!=' ';j++) //running loop till subsequent space
{
}
if(str[j+1]!='\0') //not the space after surname
{
printf("%c.",str[i+1]); //prints just the initial
}
else
for(k=i+1;str[k]!='\0';k++) //space after surname
{
printf("%c", str[k]); //prints the entire surname
}
}
}
}
答案 1 :(得分:0)
将您的循环更改为以下内容: -
for(i=0;i<name.size();i++)
{
if(name[i]==' ')
{
initial = i + 1; //initial is of type int.
temp = name[initial]; //temp is char.
cout << temp << ".";
}
}
答案 2 :(得分:0)
尝试使用ravi的答案让你的代码正常工作,但我想指出有更直观的方法来编程,这将使维护和协作在未来更容易(总是一个好的做法)。
您可以使用explode()实现(或C&#s; strtok())将名称字符串拆分为多个部分。然后只使用每个部分的第一个字符,忽略姓氏。
答案 3 :(得分:0)
我认为您的问题已经得到了解答。但是在将来你可以考虑将你的程序分成更简单的任务,这使得事情更容易阅读。与描述性变量和函数名称相结合,它可以使程序更容易理解,因此可以在以后修改或修复。 免责声明 - 我是初学者业余程序员,这只是为了想法:
#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>
// I got this function from StackOverflow somewhere, splits a string into
// vector of desired type:
template<typename T>
std::vector<T> LineSplit(const std::string& line) {
std::istringstream is(line);
return std::vector<T>(std::istream_iterator<T>(is), std::istream_iterator<T>());
}
class Names {
private:
std::vector<std::string> full_name_;
void TakeInput() {
std::cout << "Enter the name of the male student: " << std::endl;
std::string input;
getline(std::cin,input);
full_name_ = LineSplit<std::string>(input);
}
void DisplayInitialsOfFirstNames() const {
std::cout << "Mr. ";
for (std::size_t i = 0; i < full_name_.size()-1; ++i) {
std::cout << full_name_[i][0] << ". ";
}
};
void DisplayLastName() const {
std::cout << full_name_.back() << std::endl;
}
public:
void work() {
TakeInput();
DisplayInitialsOfFirstNames();
DisplayLastName();
};
};
int main(){
Names n;
n.work();
}
答案 4 :(得分:0)
我想解决这个问题的最简单方法是对你的字符串进行标记,从中打印第一个字符,除了从最后一个字符打印完整的字符。
要进行标记化,您可以执行以下操作:
std::vector<std::string> tokenize(std::istringstream &str)
{
std::vector<std::string> tokens;
while ( !str.eof() ) {
std::string tmp;
str >> tmp;
tokens.push_back(tmp);
}
return tokens;
}
现在您可以轻松横向标记:
int main()
{
std::string name;
cout << "Enter the name of the male student: ";
getline(cin,name);
cout << endl;
cout << "The original name is: ";
cout << name;
cout << endl << endl;
std::istringstream str(name);
std::vector<std::string> tokens = tokenize(str);
for ( int i = 0 ; i < tokens.size() - 1; ++i)
std::cout << tokens[i][0] << ". ";
cout << tokens[tokens.size() - 1] << endl;
}