I can't get this program to run continuously. It works once but when I choose yes to do another one it does it incorrectly

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.4: For Loops
Problem 11E
icon
Related questions
Question

c++

I can't get this program to run continuously. It works once but when I choose yes to do another one it does it incorrectly

//This program will ask user to input a positive integer , then calculates factorial of that number
//Name:
//Date
//             if number is 5, then fact 5 is  5* 4 * 3 * 2 * 1

#include <iostream>
using namespace std;

int main()
{
    int num;      //get user number
    int i;        // controls the loop
    char  resp='y';   // get user wish
    int fact = 1;     // to store factorial of the number
    do
    {
        cout << "Dear user , input a positive number " << endl;
        cin >> num;
        if (num < 0)
            cout << " This is a negative number, i need a positive number" << endl;
        else
        {
            if (num == 0 || num == 1)
                cout << " factorial of this number is ====>  1" << endl;
            else
            {
                for (i = 1; i <= num; i++)
                    fact = fact * i;
                cout << " factorial of this number is ====>  " << fact<<endl;
            }
        }
        cout << "Would you like to try my program again?   y, Y , any other character , terminates the program" << endl;
        cin >> resp;
    } while (resp == 'Y' || resp == 'y');

    system("pause");
    return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,