
Patrick B. answered 09/26/20
Math and computer tutor/teacher
using namespace std;
#include <iostream>
int main()
{
long userNum;
long x=0;
cout << "Input the userNum :>";
cin >> userNum;
while (x==0)
{
cout << "Input x :>";
cin >> x;
}
for (int iLoop=0; iLoop<4; iLoop++)
{
userNum /= x;
cout << userNum << " ";
}
}