/****Program to get the factorial****** *************** **/

#include <iostream>
using namespace std;

int main()

{
int num, fact;
cout << "Enter a positive and I will give you the factorial: ";
cin >> num;
cout << "\nThe factorial of " << num << " is: ";

...