Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ The simpler the code the better! An international phone call is billed by the minute according to this scheme: Calls up to 10 minutes
C++
The simpler the code the better!
An international phone call is billed by the minute according to this scheme: Calls up to 10 minutes cost a flat $5. Calls over 10 minutes but less than 30 cost $.50 per minute. Calls 30 minutes or longer cost a base of $15.00 plus $.30 per minute over 30. Write a program to read in the duration of a call as an integer and output the total cost as a decimal. Do not worry about making it look like money.
Given Code:
#include
int main() { //YOUR_CODE }
Expected outputs:
5, 5, 5.5, 15, 15.6
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started