Answer:
float bookExamplePrice = 15.25;
float bookTax = 7.5;
float bookShippingPrice = 2.0;
float Test = bookExamplePrice / 100;
float Tax = Test * bookTax;
float FullPrice = Tax + bookExamplePrice + bookShippingPrice;
// I don't know how to remove the numbers after the first two decimals.
// I tested this program. It works!
// The text after the two slashes don't run when you compile them.
printf("Price: $%.6f\n",FullPrice);
Explanation:
When you apply to a college, the college will see your SAT score and determine if your worthy to be in the college. If you have a high score you will mostly be accepted and offered a scholarship.
There's another question I found like this which 2 people answered with either C2 or B3. (B3 was rated with 5 stars but I don't know if that was the user them-self)