gpt4 book ai didi

c++ - 在 C++ 中创建特定长度的字符串

转载 作者:太空狗 更新时间:2023-10-29 20:02:26 25 4
gpt4 key购买 nike

对于我的类(class),我必须取三个字符串,然后将它们居中。

这是问题的链接,不,我不是要问题的答案!
http://www.hpcodewars.org/past/cw3/problems/Prog05.htm

我拥有我需要的一切,但我需要创建一个具有特定长度的“*”字符串。在这种情况下,它需要 21 个字符长的星号,我不知道如何创建它。

我是说,是的,我可以做到

string test = "********************"

但随着它的变化,它需要不同的长度。

我有一个变量设置字符串需要多长时间,但我需要知道如何创建一个具有特定长度的字符串,然后添加星号。

到目前为止的代码:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
string line;
string lines[2];
int x = 0;
int maxLength;
ifstream myfile ("example.txt");

if (myfile.is_open()) // opening file, setting the strings in the input stream to a variable to use at a later time
{
while ( getline (myfile,line) )
{
lines[x] = line;
x++;
}
myfile.close();
}

if(lines[0].length() > lines[1].length()) //finding the max length;
{
maxLength = lines[0].length();
}else
{
maxLength = lines[1].length();
}
if(lines[2].length() > maxLength)
{
maxLength = lines[2].length();
}

maxLength = maxLength + 4;

cout<<maxLength<<endl;

return 0;
}

最佳答案

它比您想象的要简单得多。 std::string 有一个专门用于此目的的构造函数:

#include <string>
#include <iostream>

int main()
{
std::string s(21, '*');

std::cout << s << std::endl;

return 0;
}

输出:

*********************

关于c++ - 在 C++ 中创建特定长度的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41030182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com