I need to make this code modular. Apparently I've done this wrong, so any way I could get advice would be appreciated.
#include float getSpeed(double speedLimit, double speed);int totalSpeed();using namespace std;const int LOWSPEED = 20;const int HIGHSPEED = 70;int main(){double speedLimit =0;double speed =0;float getSpeed(double speedLimit); { while (speedLimit > 70 || speedLimit <=>=> { cout<"the speed="" limit="" can="" only="" be="" between="" 20="" mph="" -="" 70="">"the><> cout <"enter the="" posted="" speed="" limit:="" "="">"enter> cin >> speedLimit; }float getSpeed (double speed); while (speed > 500 || speed <=>=> { cout <"speed entered="" must="" be="" greater="" than="" 0="" mph"="">"speed><> cout <"enter your="" speed:="" "="">"enter> cin >> speed; }int totalSpeed(double speedLimit, double speed); { int totalSpeed = (speed-speedLimit); cout <"you were="" going="" "="">"you>< totalspeed="">< "mph="" outside="" the="" speed="">}} }
float getSpeed(double speedLimit, double speed);int totalSpeed();
using namespace std;
const int LOWSPEED = 20;const int HIGHSPEED = 70;
int main(){
double speedLimit =0;double speed =0;
float getSpeed(double speedLimit);
{ while (speedLimit > 70 || speedLimit <=>=> { cout<"the speed="" limit="" can="" only="" be="" between="" 20="" mph="" -="" 70="">"the><> cout <"enter the="" posted="" speed="" limit:="" "="">"enter> cin >> speedLimit; }float getSpeed (double speed); while (speed > 500 || speed <=>=> { cout <"speed entered="" must="" be="" greater="" than="" 0="" mph"="">"speed><> cout <"enter your="" speed:="" "="">"enter> cin >> speed; }
int totalSpeed(double speedLimit, double speed); { int totalSpeed = (speed-speedLimit); cout <"you were="" going="" "="">"you>< totalspeed="">< "mph="" outside="" the="" speed="">
}
} }
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here