Exercise : Write a program that print the final price of purchase at a store where everything costs exactly one dollar. Ask for the number of items purchased.

Slides:



Advertisements
Similar presentations
Chapter 6 Percent © 2010 Pearson Education, Inc. All rights reserved.
Advertisements

Lesson 1: Buying Furniture and Appliances Consumer Math p
Do Now 2/20/14 Take out your HW from last night.
Two Step Equation Percentages Adding and Subtracting Adding -- Tax, Markup –Original amount + a percent of that amount –An item is marked up 75%
Ratios * Of means to multiply Using percents  To calculate sales tax of an item, simply multiply the cost of the item by the tax rate.  Example: You.
7 th Grade Math Ms. Richardson.  Before, we answered all types of percent questions using proportions.  However, when you are finding the percent of.
Markups and Discounts with Percents
Exercise Write the percent formula. percent x whole = part.
Lesson 7.6: Markup and Discount
EXAMPLE 1 Finding a Sale Price You are shopping for a guitar and find one with an original price of $160. The store is offering a 30% discount on all guitars.
Percent of Change We can find percents of increase and decrease and solve problems involving percents of change.
Lesson 3.7- Percent of Change, pg. 160
Using Percents to Solve Problems
Applications of Percent
Chapter 23 Review Adv. Math. Find the % of the number. 75% of 120.
Percent and Problem Solving: Sales Tax, Commission, and Discount
1. 7 or 7.00 Why is seven right? 20 x
Sales Tax, Tip and Commission
of Decrease and Increase
Why??  Percents are all around us! Sales and discounts shopping Sales Tax Income Taxes Tips on restaurant bills Etc…  When doing problems with % remember.
Total Item Price: $ Dollars. Website: Price: $60.00.
Sales Tax, Discounts, and Commissions Section 6.7.
7-7 Sales Tax and Discount. Discounts are like what that we have been talking about? What is a discount?
3-7 Percent of Change Objective: Students find percents of increase and decrease and solve problems involving percents of change. S. Calahan 2008.
Section 3.9 Percents Mr. Beltz & Mr. Sparks. Ratio A PERCENT is a ratio that compares a number to 100. You can write a percent as a FRACTION, DECIMAL,
Mathematics Number: Percents Science and Mathematics Education Research Group Supported by UBC Teaching and Learning Enhancement Fund Department.
Sales Tax and Discount. Sales tax is an additional amount of money charged on items that people buy. The total cost of an item is the regular price plus.
Lab Exercise : Write a program that print the final price of purchase at a store where everything costs exactly one dollar. Ask for the number of items.
Tax, tip, and Markup Notes and examples.
CS 100 Introduction to Computing Seminar
1. 2 Sales tax is calculated by finding the percent of the total purchase.
A item is marked 25% off and then you are given an additional discount of 10%. What will you pay? Are receiving a total of 35% off? Explain why or why.
Section % of what number is 75? 2. What percent of 25 is 4? 3. If you buy a shirt that was originally $45 but it is on clearance for 25% off,
Target I can understand Markups and Discounts.
Problem Solving: Direct Translation Problems Involving Percent.
Percent of Change. Objective: To find the sale price of various items. To use the percent of change formula to find discount.
Lesson 3-7 Percent of Change. Definitions Percent of change- When an increase or decrease is expressed as a percent, the percent is a percent of change.
Discount. EX1)A stereo’s regular price is $430. The store is running a sale with a discount of 10%. Find the sale price Step 1Change % to decimal Step.
Problem Solving: Direct Translation Problems Involving Percent
SB-Lesson 12.1: Markup and Discount Terminology Selling Price - The price retailers charge customers Cost - The price retailers pay to a manufacturer.
Bell Work is = x_ of = x_ x 100 = 27x 1700 = 27x x = 62.96% or 63%
Percent Proportions & Equations. A percent is a ratio that compares a number to 100. A commission is a percent of the amount of your sales. A percent.
FINDING PERCENT'S MR. MORRISON. PERCENT'S What does it mean when a store has a Saturday Special Sale and everything in the store is 25% off? If everything.
The Real Cost When you save to make a big purchase, be sure to consider the sales tax you will have to pay. Have you ever paid sales tax?
Bell Work Jan 28 1) 2) Obj: I will use percents to determine sales tax, tips, and commissions.
6.6 Discounts and Markups 10/27/15. Discount How much an item’s price is reduced by.
RED 2012 BOOK. 4.3 Activity You can find 10% and multiply by the correct amount.  Ex: 40% off of $50.00  10% is $5.00.  $5.00 X 4 (for 40%) = $20.00.
Problem solving Chapter 3
Lesson 8.3B: Markup and Discount Change each percent into a decimal  5.5%  10.24%  29% .1%  1%  50%  5%    0.29   0.01.
6.6 Discounts and Markups 10/18/16.
Using Percents 7-10 Warm Up Problem of the Day Lesson Presentation
We often have to add or subtract percentages to find the total cost. Examples of percents that add to the cost – Tip, or gratuity – Tax – Interest – Mark-up.
Lesson 7.6: Markup and Discount
CIS115 Education for Service-- snaptutorial.com
CIS 115 Teaching Effectively-- snaptutorial.com
5.6 Finding Percent of Change
Math 5-7: Percent of Change
2-7 Notes for Algebra 1 Percent of Change.
Class Examples.
Your Shopping Spree.
Tax, Tip, and Commission Math 7 Unit 6.
Chapter 2 Control Structures.
Percents and Total Cost 2.6 and 2.7
Finding Discount Objective: Students will calculate percentages and find the amount of discount.
NS Part 3 SBAC Review.
Consumer Applications Review
Bell work Week 28 Cost - The price retailers pay to a manufacturer
Basic Mr. Husch.
Calculating: Discount Prices
Assignment 6.9A: 1 – 10, 18, 19.
Presentation transcript:

Exercise : Write a program that print the final price of purchase at a store where everything costs exactly one dollar. Ask for the number of items purchased. Compute a sales tax of: 8 percent if the users purchase is less than $100 7.5 percent if the purchase is greater or equal to $100. Also if the purchase is over $500, give the customer an additional 10 percent after-tax discount. Print the purchase price, the amount of tax, the amount of the discount ($0.00 if no discount applies) and the total price. Output: Enter number of items purchased= 60 the purchase price= 60 $ the amount of tax= 4.8 $ the amount of the discount= 0.00$ the total price= 64.8 $ Enter number of items purchased= 510 the purchase price= 510$ the amount of tax= 38.25$ the amount of the discount= 54.82$ the total price= 493.42$