1 / 7

Last Class (sections 3.4 - 3.6)

Last Class (sections 3.4 - 3.6). What is a variable? rules for naming variables garbage values strings, chars, boolean rules for naming variables Integer Variables example from book +, -, *. Data Types: Reals. A number that contains a decimal point can begin with a ‘+’ or a ‘-’

Télécharger la présentation

Last Class (sections 3.4 - 3.6)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Last Class (sections 3.4 - 3.6) • What is a variable? • rules for naming variables • garbage values • strings, chars, boolean • rules for naming variables • Integer Variables • example from book • +, -, *

  2. Data Types: Reals • A number that contains a decimal point • can begin with a ‘+’ or a ‘-’ • must have digits on both sides of the decimal • cannot contain • commas • an embedded blank • non-numeric characters • a’+’ or a ‘-’ at the end of the value

  3. Real Operators • +, - • *, / • operator precedence • PEMDAS

  4. Integer Operators • +, - • * • DIV “integer division” • MOD “remainder operator” • operator precedence

  5. Mixed mode • You can assign an integer value to a real variable. The compiler automatically converts the integer into a real (ie. 5 -> 5.0) • You cannot assign a real to an integer. • Mixed mode is when both integers and reals are on the right side of an expression (a real variable must be on the left side).

  6. Section 3.11 • readln

  7. Correcting syntax errors • Go over example in book

More Related