Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help, need source code written in C++ using if else statements. Specification We will be determining the postage cost for regular or large envelopes
Please help, need source code written in C++ using if else statements.
Specification We will be determining the postage cost for regular or large envelopes not weighing more than 3 ounces. The chart below shows the rates. Weight Not Over (oz.) Regular Large 0.55 0.70 0.85 1.00 1.15 1.30 Your program will input values until a weight less than 0 or greater than 3 ounces is entered. You must submit the following electronically to BlackBoard by 3pm on February 24, 2020: Program development -math, pseudocode, C++ code Source code - a working C++ source code. Pro Lambase, PE ENS 117-Fal 2019 Typical Output Postage Calculations What is the weight of the letter, in ounces? 0.3 What is the size of the letter? (L-large, R = regular) The postage for a regular letter weighing 0.30 ounces is $ 0.55 What is the weight of the letter, in ounces? 0.6 What is the size of the letter? (L- large, R regular) 1 The postage for a large letter weighing 0.60 ounces is $ 1.00 What is the weight of the letter, in ounces? 1.5 What is the size of the letter? (L- large, R- regular) 1 The postage for a large letter weighing 1.50 ounces is $ 1.15 What is the weight of the letter, in ounces? 2.1 What is the size of the letter? (L-large, R = regular) The postage for a regular letter weighing 2.10 ounces is $ 0.85 What is the weight of the letter, in ounces? 9 The total cost of postage is $ 3.55 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