gpt4 book ai didi

c++ - 如何打印一个数组,暂停它并继续在 C++ 中打印数组?

转载 作者:搜寻专家 更新时间:2023-10-31 02:13:11 24 4
gpt4 key购买 nike

我如何一次显示 3 个名字,在列表继续显示之前暂停让用户按下一个键。

我的代码现在只循环数组的前 3 个值

#include <iostream> 
#include <string>
#include <iomanip>

using std::setw;
using namespace std;

int main() {

string a;
string names[10]; //size of array

for (int i = 0; i < 10; i++)
{
std::cout << "Enter name ";
std::cin >> a; //user input

names[i] = a; //assigns input to array
}
cout << "\n";

for (int k = 0; k < 10; k++)
{
for (int j = 0; j < 3; j++)
{
cout << names[j] << endl;
}

system("pause");
}

}

最佳答案

我根据您的评论更改了答案。我们没有 sleep ,而是暂停并等待用户在键盘上输入任何内容。另外请注意,由于您使用的是命名空间,因此不需要包含 std::,我决定使用它,因为我不确定您想要什么方式。

#include <iostream>
#include <string>
#include <iomanip>

using std::setw;
using namespace std;

int main() {

string a;
int pauseCheck = 0; //new var
string names[10]; //size of array

for (int i = 0; i < 10; i++) {
std::cout << "Enter name ";
std::cin >> a; //user input

names[i] = a; //assigns input to array
}
cout << "\n";

for (int k = 0; k < 10; k++) {

cout << names[k] << endl;
pauseCheck++; //increments check

if (pauseCheck == 3) { //if equals 3
system("pause"); //we pause till user input
pauseCheck = 0; //reset pause check
}
}
system("pause"); //last and final pause before program ends
}

关于c++ - 如何打印一个数组,暂停它并继续在 C++ 中打印数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41701980/

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