Question: Need help figuring out this C program. its supposed to calculate the commission and it is supposed to be in between the value of 2500
Need help figuring out this C program. its supposed to calculate the commission and it is supposed to be in between the value of 2500 and 6250
/* Calculates a broker's commission */
#include
int main(void) { float commission, value;
printf("Enter value of trade: "); scanf("%f", &value);
if (value < 2500.00f) commission = 30.00f + .017f * value; else if (value < 6250.00f) commission = 56.00f + .0066f * value; else if (value < 20000.00f) commission = 76.00f + .0034f * value; else if (value < 50000.00f) commission = 100.00f + .0022f * value; else if (value < 500000.00f) commission = 155.00f + .0011f * value; else commission = 255.00f + .0009f * value;
if (commission < 39.00f) commission = 39.00f;
printf("Commission: $%.2f ", commission);
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
