gpt4 book ai didi

c++ - 如何只接受多个输入的数字

转载 作者:太空狗 更新时间:2023-10-29 23:00:44 26 4
gpt4 key购买 nike

我希望用户为两个变量输入一个值然后输入另一个值。如果他们的输入不是数字。他们应该得到一个错误并且程序循环回到开头。如果有办法让用户输入两个值。然后只有在他们为两个变量输入了两个值之后。该程序检查两者的值是否为数字而不是其他任何内容。然后它显示我想要的东西。但如果他们不输入数字。弹出一个错误。我看过一些关于如何做到这一点的代码。但我无法弄清楚如何让它适用于多个输入。此外,该程序仍然接受非数字。就像您输入“50k”一样。它会说您输入了“50”并忽略了“k”。我希望它不要忽略那个非数字。相反,通过显示错误消息让用户感觉不好。这是我的代码。

//discordio
// EXAM 01
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <string>

using namespace std;

int main()
{
const int Load_cost = 50;
const double Mile_cost = .50;
int load = 0;
double mile = 0;
const double Mpg = 8;
const double PerGal = 3;
double total = 0;
double fin1 = 0;
double fin2 = 0;
double fin3 = 0;


cout << "Welcome to discordio's Shipping! Please fill out the following." << endl;

cout << "Number of loads: ";
cin >> load;

cout << "Number of miles: ";
cin >> mile;


fin1 = load * Load_cost;
fin2 = mile * Mile_cost;
fin3 = mile / Mpg * PerGal;
total = fin1 + fin2 + fin3;

system("CLS");


cout << cout << "\nWelcome to discordio's Shipping! We welcome the opportunity to provide you with a quote." << endl << endl;
cout << fixed << setprecision(2);
cout << "Shipping fee" << setw(3) << ":" << setw(3) << "$ " << load * Load_cost << endl << endl;
cout << "Mileage" << setw(8) << ":" << setw(3) << "$ " << mile * Mile_cost << endl << endl;
cout << "Fuel Surcharge:" << setw(3) << "$ " << mile / Mpg * PerGal << endl << endl;
cout << "Total" << setw(10) << ":" << setw(3) << "$ " << total << endl;
}

这是我的作业基础知识(如果这不符合大多数人的标准,请见谅)。当两个输入都不是数字时,我只需要帮助添加错误。如果您的代码需要我使用额外的头文件,请告诉我。我对此还是很陌生,所以我不知道要添加什么。希望我在我的问题中涵盖了足够的内容。另请在您的答案中添加代码。如果可以的话,如果我将代码粘贴到 IDE 中,请让您的代码正常工作。我从操纵事物中学习以找到不同的结果。所以展示不要告诉。

最佳答案

您的问题不是很清楚,但这里有一些解决您可能遇到的问题的方法:

a) 读取多个数字,一个接一个,不相关

在这种情况下,最好提取代码来读取和验证输入操作到函数中,例如:

template<typename T, typename Q, typename E>
T askForOne(std::ostream & out, std::istream & in, Q&& question, E&& error) {
T value;
out << question;
while (not (in >> value)) {
in.clear();
in.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
out << error;
}
return value;
}

然后您可以调用此函数从某个流中检索多个值:

int one = askForOne<int>(std::cout, std::cin, "Enter a number: ", "Invalid. ");
int two = askForOne<int>(std::cout, std::cin, "Enter a number: ", "Invalid. ");

b) 读取多个数字,相关

如果你想读取多个数字,并且只有当所有都被读取时才接受输入,那么你可以使用像这样的函数:

template<typename T, std::size_t N, typename Q, typename E>
std::array<T, N> askFor(std::ostream & out, std::istream & in, Q&& question, E&& error) {
std::array<T, N> values;
auto const scan = [&in, &values] {
for (auto & value : values) {
if (not (in >> value)) {
return false;
}
}
return true;
};
out << question;
while (not scan()) {
in.clear();
in.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
out << error;
}
return values;
}

这将尝试获取指定数量的值,并在一个无效时立即失败。除了使用常量,数字的编译时间也可以使用运行时大小的 std::vector

以上功能的小测试:

// in some function
using namespace std;
int one = askForOne<int>(cout, cin, "Int? ", "Meh. ");
int two = askForOne<int>(cout, cin, "Int? ", "Meh. ");
auto ints = askFor<int, 5>(cout, cin, "5 ints? ", "Meh. ");
cout << "one = " << one << endl;
cout << "two = " << two << endl;
cout << "ints = ";
copy(begin(ints), end(ints), ostream_iterator<int>{cout, ", "});

Int? Haha

Meh. 21

Int? Ha ha ha

Meh. Ha

Meh. 42

5 ints? 1 2 3 4 BUUUUUU

Meh. 1 2 3 4 BUUU JA

Meh. Ehm 1 2 3 4 5

Meh. 9 8 7 6 5

one = 21

two = 42

ints = 9, 8, 7, 6, 5,

( Live here )

关于c++ - 如何只接受多个输入的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32930893/

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