Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I\'m trying to make a program that converts ft/s to mph. Ihave the following: #i

ID: 3617579 • Letter: I

Question

I'm trying to make a program that converts ft/s to mph. Ihave the following:
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main () {    double fts=0, mph;    cout<<"ft/s    "<<"mph"<<endl;    while(fts<=99)    {    fts=fts+5;    mph=fts*(3600/5280);    cout<<" "<<fts<<setw(12)<<mph<<endl;    }    system("pause");    return 0; }
However, I keep getting 0 for all my mph values. Anyideas on how to fix this?
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main () {    double fts=0, mph;    cout<<"ft/s    "<<"mph"<<endl;    while(fts<=99)    {    fts=fts+5;    mph=fts*(3600/5280);    cout<<" "<<fts<<setw(12)<<mph<<endl;    }    system("pause");    return 0; }
However, I keep getting 0 for all my mph values. Anyideas on how to fix this? #include <iostream> #include <iomanip> #include <cmath> using namespace std; int main () {    double fts=0, mph;    cout<<"ft/s    "<<"mph"<<endl;    while(fts<=99)    {    fts=fts+5;    mph=fts*(3600/5280);    cout<<" "<<fts<<setw(12)<<mph<<endl;    }    system("pause");    return 0; }
However, I keep getting 0 for all my mph values. Anyideas on how to fix this?

Explanation / Answer

please rate - thanks you were doing int arithmetic instead of real arithmetic #include #include #include using namespace std; int main () {     double fts=0, mph;    cout