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

时间:2015-10-04 07:00:17

标签: c++

我希望用户为两个变量输入一个值,然后输入另一个值。如果他们的输入不是数字。他们应该得到一个错误,程序循环回到开头。如果有办法让用户输入两个值。然后只有在他们为两个变量输入两个值之后。程序检查两者的值是否为数字而不是其他值。然后它显示我想要的东西。但如果他们没有加入一个数字。弹出一个错误。我已经看到了一些关于如何做到这一点的代码。但我无法弄清楚如何让它适用于多个输入。该计划仍然接受非数字。就像你输入“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中,请使代码正常工作。我从操纵事物中学到了不同的结果。所以节目不要告诉。

3 个答案:

答案 0 :(得分:1)

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

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

     

Meh。 1 2 3 4 BUUU JA

     

Meh。 Ehm 1 2 3 4 5

     

Meh。 9 8 7 6 5

     

one = 21

     

两个= 42

     

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

Live here

答案 1 :(得分:0)

cin是iostream中声明的对象 它有一个以“&gt;&gt;”命名的函数。 所以你要做的就是称为运算符重载。 在这个你改变由“&gt;&gt;”定义的功能的定义 但你不能为cin重载它,因为它的类,即iostream的构造函数是不可访问的,所以创建另一个派生自iostream的类而不是重载“&gt;&gt;”然后制作一个对象并使用“&gt;&gt;”接着就,随即 欲了解更多信息,请访问谷歌并搜索有关运营商超载的信息

答案 2 :(得分:0)

您可以尝试将代码放入带有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;
}