麻烦初学者编码挑战

时间:2017-09-20 05:57:15

标签: c++ std cin cout

编写一个程序,继续要求用户输入5以外的任何数字,直到用户输入数字5。 然后告诉用户“嘿!你不应该输入5!”并退出程序。

★修改程序,以便在10次迭代后,如果用户仍未输入5将告诉用户“哇,你比我更耐心,你赢了。”并退出。

★★修改程序,以便它要求用户输入除了他们被要求输入数字的次数之外的任何数字。 (即在第一次迭代“请输入0以外的任何数字”和第二次迭代“请输入除1以外的任何数字”等等。当用户输入他们被要求的号码时,程序必须相应地退出到。)

我的大部分程序都可以使用。我有一个点,它要求一个从0开始向上的数字,它在10次尝试后给用户提供患者信息,如果他们输入了他们不应该的号码,则退出程序。但是,如果用户输入的数字高于它告诉您不要输入的数字,程序将退出而不显示任何消息。

我真的不知道要搜索什么来解决这个问题。然而,我试图移动一些东西,并摆脱了一些冗余变量。

任何提示都将不胜感激,请不要事先给我答案!这是我到目前为止所拥有的。

#include <iostream>


int main()
{
    const int GUESS = 1; // constant for number of tries
    const int PATIENCE = 10; // constant for message at 10 tries
    int UserNum; // player input
    int InputNum = GUESS; // intializes GuessNumber


    // asks for player input
    do
    {
        std::cout << "Enter any number other then "<< InputNum << ": ";
        std::cin >> UserNum;

        // exits program if user inputs the number displayed
        if (UserNum == InputNum)
        {
            std::cout << "Hey! you weren't supposed to enter " << InputNum << "!\n";
        }
        // increase the Guess counter if they dont enter the number displayed
        else if (UserNum != InputNum)
        {
            InputNum++;

        }

        if (InputNum == PATIENCE)
        {
            std::cout << "Wow, you're more patient then I am, you win.\n";
            break;
        }
    } while (UserNum != InputNum);



    return 0;
}

2 个答案:

答案 0 :(得分:1)

您的问题是do while循环条件

首先执行

语句,稍后检查条件

例如

InputNum初始化为1

因此,如果您输入2作为UserNum的输入,则在else if条件下,InputNum将会增加到2

评估此条件时

 while (UserNum != InputNum)

它将为2==2

循环中断

<强>溶液

更改PATIENCE = 11并使用

while (1)   
// this will run infinitely but it will break after 10 iteration or when u press the same number which u shouldn't

而不是

while (UserNum != InputNum)

完整计划

#include <iostream>


int main()
{
    const int GUESS = 1; // constant for number of tries
    const int PATIENCE = 11; // constant for message at 10 tries
    int UserNum; // player input
    int InputNum = GUESS; // intializes GuessNumber


                          // asks for player input
    do
    {
        std::cout << "Enter any number other then " << InputNum << ": ";
        std::cin >> UserNum;

        // exits program if user inputs the number displayed
        if (UserNum == InputNum)
        {
            std::cout << "Hey! you weren't supposed to enter " << InputNum << "!\n";
            break;
        }
        // increase the Guess counter if they dont enter the number displayed
        else if (UserNum != InputNum)
        {
            InputNum++;

        }

        if (InputNum == PATIENCE)
        {
            std::cout << "Wow, you're more patient then I am, you win.\n";
            break;
        }
    } while (1);


    system("pause");
    return 0;
}

答案 1 :(得分:0)

嘿,尝试这个程序,它完全符合您的要求。

 #include <iostream>
    int main ()
    {
      int GUESS = -1;       //loop variable
      const int PATIENCE = 10;  // constant for message at 10 tries
      int InputNum;         // input from user



  std::cout << "PATIENCE Test" << "!\n";


  do
    {
      GUESS++;
      // asks for player's input
      std::cout << "Enter any number other than " << GUESS << ": ";
      std::cin >> InputNum;

      // exits program if user inputs the number displayed
      if (GUESS == InputNum)
    {
      std::
        cout << "Hey! you weren't supposed to enter " << GUESS << "!\n";
      break;
    }
      if (GUESS == PATIENCE)
    {
      std::cout << "Wow, you're more patient then I am, you win.\n";
      break;
    }

    }
  while (GUESS != InputNum);

  return 0;
}