Just Basic Lessons 7&8 Mr. Kalmes.

Slides:



Advertisements
Similar presentations
Introduction to Spreadsheets. Learning Target I can input data and do simple calculations in a spreadsheet.
Advertisements

Lesson 5-1 Example Translate the sentence to an inequality. 4 plus 3 times a number is less than 5. Step 1Determine the operation. The word “times”
Agenda  Commenting  Inputting Data from Keyboard (scanf)  Arithmetic Operators  ( ) * / + - %  Order of Operations  Mixing Different Numeric Data.
Variables and Expressions 1.3. Vocabulary Algebra: Branch of mathematics that uses symbols such as variables Variable: A letter or symbol used to represent.
Section 8.8.  In this lesson you will learn to add, subtract, multiply, and divide rational expressions. In the previous lesson you combined a rational.
What is a spreadsheet? Spreadsheet Basics © All Rights Reserved
1-5 Solving Equations with Rational Numbers Warm Up Warm Up Lesson Presentation Lesson Presentation Problem of the Day Problem of the Day Lesson Quizzes.
Unit 3 Using Fractions and Percentages Presentation 1 Addition and Subtraction of Fractions Presentation 2 Multiplication and Division of Fractions Presentation.
Any Questions? Agenda Level 77 Initialize Display & Accept Arithmetic Verbs Compute statement String/Unstring Inspect.
Introduction to Programming
Equations Inequalities = > 3 5(8) - 4 Numerical
* Collect the like terms 1. 2a = 2a x -2x + 9 = 6x z – – 5z = 2z - 6.
Lesson 8.1. » A statement where two mathematical expressions are. » Think of an equation as a balance scale or teeter-totter. The left side must always.
C++ Programming: From Problem Analysis to Program Design, Fourth Edition Chapter 3: Input/Output Samples.
Introduction to Programming
JUST BASIC Lessons 6 – 9 Mr. Kalmes.
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.
PowerPoint Presentation Authors of Exposure Java
Chapter 2 - Introduction to C Programming
Percentages Mr. Hendy Industries.
Exponent Rules.
Eamonn Keogh CS005 Introduction to Programming: Matlab Eamonn Keogh
OR How to decide what math symbols to use
Chapter 2 - Introduction to C Programming
Computational Thinking
Computational Thinking
Simplifying Expressions in Algebraic Expressions
Exponent Rules
Variables and Expressions
Python Lesson 6 Mr. Kalmes.
Arithmetic & Geometric Sequences
Python Lesson 3 Mr. Kalmes.
Python Mr. Husch.
Number and String Operations
Python Lessons 9 & 10 Mr. Kalmes.
In this lesson you will learn how to read and write algebraic expressions by using variables.
Introduction to Java, and DrJava part 1
Inequalities 12/3/2018.
Variables in Algebra Chapter 1 Section 1.
Lecture Notes 8/24/04 (part 2)
Microsoft Excel 101.
Java Lesson 36 Mr. Kalmes.
Python Lesson 21 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Basic Lessons 7&8 Mr. Husch.
Python Lessons 9 & 10 Mr. Husch.
Java Lessons 5 – 8 Mr. Kalmes.
ICT Programming Lesson 4:
Variables and Expressions
Just Basic Lesson 17 Part 1 Mr. Kalmes.
Just Basic Lessons 14 Mr. Kalmes.
Chapter 2 Control Structures.
Python Lesson’S 1 & 2 Mr. Kalmes.
12 Further mathematics Recurrence relations.
Just Basic Lesson 15 Mr. Kalmes.
Basic Lessons 5 & 6 Mr. Kalmes.
Just Basic Lesson 12 Mr. Kalmes.
Just Basic Lessons 9 Mr. Kalmes.
Variables and Expressions
Basic Mr. Husch.
Python 10 Mr. Husch.
Just Basic Lesson 13 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Python 4 and 5 Mr. Husch.
Basic 9 Mr. Husch.
DATA TYPES AND OPERATIONS
Just Basic Lessons 7 Mr. Kalmes.
Just Basic Lessons 8 Mr. Kalmes.
Review Simplify 8 – 120 ÷ 5 • ÷ – 2 | 5 – 7 |
Python Creating a calculator.
Presentation transcript:

Just Basic Lessons 7&8 Mr. Kalmes

Lesson 7 Objectives Compare and contrast two different programs Analyze different arithmetic operators

Previous Program Create the following Program Compare the two programs Input “Enter a price, please: “; amount Let tax = amount*.07 Print “tax is: “; tax; “Total is: “; tax+amount [beginning] print "Type a dollar and cent amount." input "(Press 'Enter' alone for help) ?"; amount if amount = 0 then goto [help] let tax = amount * 0.07 print "Tax is: "; tax; ". Total is: "; tax + amount goto [beginning] [help] print "This tax program determines how much tax is" print "due on an amount entered and also computes" print "the total amount. The tax rate is 7%"

Journal Part 1 Please click on your journal and complete sections 1 & 2

Operators Definition: mathematical symbols that generate an action in the program Examples: a = b a is equal to b a <> b a is unequal to b a < b a is less than b a > b a is greater than b a <= b a is less than or equal to b a >= b a is greater than or equal to b

Calculator Please create a calculator program that includes: Add, Subtract, Multiply, Divide Sections Must be able to repeat Must be able to choose to repeat or end Must have a way to get around divide by zero

Lesson 8 Objectives Define strings Understand the purpose of strings in BASIC programming

Variable & Strings What is a variable? String: String variables hold strings of characters (numbers, letters, and symbols) that can be used later in the program. Examples: data$ age$ name$

String Program 1 Write the following program: input “Please type your age.”; age$ print “I can’t believe you are “; age$

String Program 2 Write the following program: input "What is your first name ?"; firstName$ input "What is your last name ?"; lastName$ let fullName$ = firstName$ + " " + lastName$ print "Your full name is: "; fullName$

Journal Part 2 Complete section 3 of your journal

Exit Slip Please complete your exit slip via google forms