Performing Calculations and Working With Numbers - PowerPoint PPT Presentation

1 / 20
About This Presentation
Title:

Performing Calculations and Working With Numbers

Description:

You Can Use Parentheses to Group Operations and Build More Complex Mathematical Statements ... name &= last name = name & last Concatenate. Named Constants ... – PowerPoint PPT presentation

Number of Views:31
Avg rating:3.0/5.0
Slides: 21
Provided by: cit62
Category:

less

Transcript and Presenter's Notes

Title: Performing Calculations and Working With Numbers


1
3.3
  • Performing Calculationsand Working With Numbers

Visual Basic Provides Several Operators for
Performing Mathematical Operations You Can Use
Parentheses to Group Operations and Build More
Complex Mathematical Statements
2
Common Arithmetic Operators
  • Visual Basic provides operators for the common
    arithmetic operations
  • Addition
  • - Subtraction
  • Multiplication
  • / Division
  • Exponentiation

3
Common Arithmetic Operators
  • Examples of use
  • decTotal decPrice decTax
  • decNetPrice decPrice - decDiscount
  • dblArea dblLength dblWidth
  • sngAverage sngTotal / intItems
  • dblCube dblSide 3

4
Special Integer Division Operator
  • The backslash (\) is used as an integer division
    operator
  • The result is always an integer, created by
    discarding any remainder from the division
  • With Option Strict off, floating-point operands
    are first rounded to the nearest integer
  • With Option Strict on, floating-point operands
    are not allowed with integer division
  • Allowed CInt(15.0) \ CInt(5.0)
  • Not Allowed 15.0 \ 5.0

5
Special Modulo (MOD) Operator
  • This operator can be used in place of the
    backslash operator to give the remainder of a
    division operation
  • intRemainder 17 MOD 3 result is 2
  • dblRemainder 17.5 MOD 3 result is 2.5
  • Any attempt to use of the \ or MOD operator to
    perform integer division by zero causes a
    DivideByZeroException runtime error

6
Arithmetic Operator Precedence
  • Operator precedence tells us the order in which
    operations are performed
  • From highest to lowest precedence
  • Exponentiation ()
  • Multiplicative ( and /)
  • Integer Division (\)
  • Modulus (MOD)
  • Additive ( and -)
  • Where precedence is the same, operations occur
    from left to right

7
Operator Precedence Examples
The result is very different when the divide by 2
operation is moved from the end of the
calculation to the middle.
6 / 2 23 4 6 / 2 8 4 3 8
4 24 4 28
  • 6 23 4 / 2
  • 6 8 4 / 2
  • 48 4 / 2
  • 48 2
  • 50

8
Grouping with Parentheses
  • Parentheses () can be used to force selected
    parts of an expression to be evaluated before
    others
  • Assume were computing the average of 3 numbers
  • dblAvg int1 int2 int3 / 3 incorrect
  • int3 / 3 is evaluated first
  • That result is added to int1 and int2
  • Use parentheses to control order of operations
  • dblAvg (int1 int2 int3) / 3 correct
  • int1 int2 int3 is evaulated first
  • That result is divided by 3
  • When in doubt, use parentheses!

9
Combined Assignment Operators
  • Often need to change the value in a variable and
    assign the result back to that variable
  • For example var var 5
  • Subtracts 5 from the value stored in var
  • Other examples
  • x x 4 Adds 4 to x
  • x x 3 Subtracts 3 from x
  • x x 10 Multiplies x by 10
  • VB provides for this common need with combined
    assignment operators

10
Combined Assignment Operators
  • These special assignment operators provide an
    easy means to perform these common operations
  • Operator Usage Equivalent to Effect
  • x 2 x x 2 Add to
  • - x - 5 x x 5 Subtract from
  • x 10 x x 10 Multiply by
  • / x / y x x / y Divide by
  • \ x \ y x x \ y Int Divide by
  • name last name name last Concatenate

11
Named Constants
  • Programs often need to use given values
  • For example decTotal 1.06
  • Adds 6 sales tax to an order total
  • Two problems with this approach
  • The reason for multiplying decTotal by 1.06
    isnt always obvious
  • If sales tax rate changes, must find and change
    every occurrence of .06 or 1.06
  • Use of named constants resolves both these issues

12
Named Constants
  • Can declare a variable whose value is set at
    declaration and cannot be changed later
  • Const sngSALES_TAX_RATE As Single 1.06
  • Looks like a normal declaration except
  • Const used instead of Dim
  • An initialization value is required
  • By convention, entire name capitalized with
    underscore characters to separate words
  • The objective of our code is now clearer
  • Const sngSALES_TAX_RATE As Single 1.06
  • decTotal sngSALES_TAX_RATE

13
3.4
  • Exception Handling

A Well-Engineered Program Should Report Errors
and Try To Continue Or Explain Why It Cant
Continue and Then Shut Down. Use Exception
Handling to Recover Gracefully
from Errors
14
Runtime Errors
  • Weve shown two possible runtime errors
  • DivideByZeroException
  • InvalidCastException
  • There are many others
  • Runtime errors occur for may reasons
  • A runtime error results when
  • Visual Basic throws an exception
  • And it is an unhandled exception
  • Exception handling allows a program to fail
    gracefully and recover if possible

15
Message Boxes
  • A message box is an easy way to notify the user
    when an error occurs
  • MessageBox.Show displays a pop-up window with a
    message and an OK button
  • There are two basic formats
  • MessageBox.Show( message )
  • MessageBox.Show( message , caption )
  • message appears in the body of the window
  • caption appears in the title bar of the window

16
Message Box Example
  • The following code displays the message box shown
    below
  • MessageBox.Show(Please try again, and enter a
    number, Entry Error)

The capabilities of the MessageBox will be
presented in more detail in Chapter 4
17
Handling Exceptions
  • Visual Basic provides an exception handler
  • A simple form that ignores some options is
  • Try
  • try-block
  • Catch exception-type
  • catch-block
  • End Try
  • The try-block contains program statements that
    might throw an exception
  • The catch-block contains statements to execute if
    an exception is thrown

18
Exception Handling Example
  • Consider the following exception handling code
  • Try
  • Dim decSalary as Decimal
  • decSalary CDec(txtSalary.Text)
  • MessageBox.Show(Your salary is _
  • decSalary dollars)
  • Catch
  • MessageBox.Show( Please try again, _
  • and enter a number, Entry Error)
  • End Try
  • If CDec throws a cast exception, the try block
    catches it, jumps to and executes the catch
    block, and displays the error message

19
More Exception Handling Features
  • Can catch specific types of messages
  • Can capture and show the exception message issued
    by Visual Basic
  • Try
  • Dim decAnnualSalary as Decimal
  • Dim intPayPeriods as Integer
  • Dim decSalary as Decimal
  • decAnnualSalary CDec(txtAnnualSalary.Text)
  • intPayPeriods CInt(txtPayPeriods.Text)
  • decSalary.Text decAnnualSalary / intPayPeriods
  • lblSalary.Text decSalary.ToString()
  • Catch ex as InvalidCastException
  • MessageBox.Show(ex.Message, Entry Error)
  • Catch ex as DivideByZeroException
  • MessageBox.Show(Zero Value Not Allowed _
    for Pay Periods)
  • End Try

20
Exception Handling Exercise
  • Tutorial 3-8 provides an opportunity to work with
    exception handling concepts
Write a Comment
User Comments (0)
About PowerShow.com