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

How to only accept numbers for multiple inputs

本文关键字:输入 数字      更新时间:2023-10-16

我希望用户为两个变量依次输入一个值。如果他们的输入不是数字。他们应该得到一个错误,然后程序循环回到开始。如果有办法让用户同时输入两个值。然后只有在他们为两个变量输入了两个值之后。程序检查两者的值是否都是数字而不是其他值。然后它会显示我想要的东西。但如果他们不输入数字。弹出错误提示。我看过一些关于如何做到这一点的代码。但我不知道如何让它适用于多种输入。此外,该程序仍然接受非数字。比如你输入"5万"。它会显示你输入了"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后工作。我从操纵事物中学习,以找到不同的结果。所以show不要tell。

你的问题不完全清楚,但这里有一些解决方案,您可能会遇到的问题:

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 ?

哈哈

咩。

21

Int ?哈哈哈

咩。

公顷

咩。

42

5整数? 1 2 3 4 BUUUUUU

咩。 1 2 3 4 BUUU JA

咩。 Ehm 1 2 3 4 5

咩。 9 8 7 6 5

one = 21

2 = 42

int = 9, 8, 7, 6, 5,

(住在这里)

cin是在iostream中声明的对象它有一个名为">>"的函数。你要做的就是操作符重载。在这里,你改变了由">>"定义的函数的定义但是你不能为cin重载它,因为它的类即iostream的构造函数是不可访问的,所以创建另一个从iostream派生的类,而不是重载">>",然后为它创建一个对象并使用">>"要了解更多信息,请到谷歌搜索操作符重载

您可以尝试将代码放入带有int形参的函数中,并像这样传递两个变量:

using namespace std;
int main()
{
    int x = 0;
    int z = 0;
    inputNumber(x);
    inputNumber(z);
}  
void inputNumber(int input)
{
    cout << "Enter an int: ";
    while(!(cin >> input)){
        cin.clear();
        cin.ignore(numeric_limits<streamsize>::max(), 'n');
        cout << "Invalid input.  Try again: ";
    }
    cout << "You entered: " << input << endl;
}