SlideShare una empresa de Scribd logo
1 de 7
Descargar para leer sin conexión
CS111 Lab
Arithmetic
Instructor: Michael Gordon
C++ Arithmetic Operators
 + Addition
 - Subtraction
 * Multiplication
 / Division
 % Modulus (remainder)
 () Parentheses
Order of Operations
 ()
 * / %
 + -
 (4 + 2) / 2 + 4 = ???
 Operation in () first: 4+2=6
 Division next: 6 / 2 = 3
 Last addition, 3 + 4 = 7
Integer and Decimal Division
 Division of two integers drops the decimal:
 5 / 2 = 2 (not 2.5)
 4 / 2 = 2
 Division involving a double type, will result
in a double result (with decimal)
 5 / 2.0 = 2.5
 4 / 2.0 = 2
 One or both numbers must be a double
 Same rules apply to addition, subtraction
and multiplication.
Data Types and Order
 Sample operations and resulting data
types:
 6.0 + 5 / 2
 Result of first operation: int
 Result of second operation: double
 • 5 + 5 / 2.0
 Result of first operation: double
 Result of second operation: double
Type casting
 Type casting changes one type to
another.
 For example if you want a double type
result of integer division, you can do this:
 double result = (double) 5 / 2
 result now equals 2.5
Type casting
 Reverse example (double to int)
 Drops the decimal part
 double total = 100.5;
 int value = (int) total;
 value now equals 100.

Más contenido relacionado

La actualidad más candente

Sept. 21, 2012
Sept. 21, 2012Sept. 21, 2012
Sept. 21, 2012
khyps13
 
5 5b Slope Intercept Form from Two Points
5 5b Slope Intercept Form from Two Points5 5b Slope Intercept Form from Two Points
5 5b Slope Intercept Form from Two Points
Bitsy Griffin
 
Linear Programming Project
Linear Programming ProjectLinear Programming Project
Linear Programming Project
Chawal Ukesh
 

La actualidad más candente (19)

Quantitative Analysis For Decision Making
Quantitative Analysis For Decision MakingQuantitative Analysis For Decision Making
Quantitative Analysis For Decision Making
 
Order of Operations
Order of OperationsOrder of Operations
Order of Operations
 
Sept. 21, 2012
Sept. 21, 2012Sept. 21, 2012
Sept. 21, 2012
 
Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
 
Survey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating PointSurvey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating Point
 
Solving one step equations (workshop 1)
Solving one step equations (workshop 1)Solving one step equations (workshop 1)
Solving one step equations (workshop 1)
 
Chapter 7 Formats in MATLAB
Chapter 7 Formats in MATLABChapter 7 Formats in MATLAB
Chapter 7 Formats in MATLAB
 
Mathematichs
MathematichsMathematichs
Mathematichs
 
Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
 
Inequalities
InequalitiesInequalities
Inequalities
 
Fantacy foot ball introduction
Fantacy foot ball introductionFantacy foot ball introduction
Fantacy foot ball introduction
 
Powers and Exponents.pptx
Powers and Exponents.pptxPowers and Exponents.pptx
Powers and Exponents.pptx
 
5 5b Slope Intercept Form from Two Points
5 5b Slope Intercept Form from Two Points5 5b Slope Intercept Form from Two Points
5 5b Slope Intercept Form from Two Points
 
Add and Subtract Decimals
Add and Subtract DecimalsAdd and Subtract Decimals
Add and Subtract Decimals
 
Linear Programming Project
Linear Programming ProjectLinear Programming Project
Linear Programming Project
 
Untitled 2
Untitled 2Untitled 2
Untitled 2
 
DIVISION: TWO-DIGIT DIVISOR
DIVISION: TWO-DIGIT DIVISORDIVISION: TWO-DIGIT DIVISOR
DIVISION: TWO-DIGIT DIVISOR
 
Lesson 33: The Assignment Problem
Lesson 33: The Assignment  ProblemLesson 33: The Assignment  Problem
Lesson 33: The Assignment Problem
 
Fractions
FractionsFractions
Fractions
 

Destacado (7)

2010 1st sem_course_module_hotel_accountancy.2010
2010 1st  sem_course_module_hotel_accountancy.20102010 1st  sem_course_module_hotel_accountancy.2010
2010 1st sem_course_module_hotel_accountancy.2010
 
What's Next for Western Europe
What's Next for Western EuropeWhat's Next for Western Europe
What's Next for Western Europe
 
Recyclingandjobsinmassachusetts
RecyclingandjobsinmassachusettsRecyclingandjobsinmassachusetts
Recyclingandjobsinmassachusetts
 
Smp presentation incl videos 1g
Smp presentation incl videos 1gSmp presentation incl videos 1g
Smp presentation incl videos 1g
 
Difan Zhang IMC project
Difan Zhang IMC projectDifan Zhang IMC project
Difan Zhang IMC project
 
The Green Roundtable Brings it All Together at NEXUS Green Resource Center
The Green Roundtable Brings it All Together at NEXUS Green Resource CenterThe Green Roundtable Brings it All Together at NEXUS Green Resource Center
The Green Roundtable Brings it All Together at NEXUS Green Resource Center
 
10 million solar roofs act of 2011
10 million solar roofs act of 201110 million solar roofs act of 2011
10 million solar roofs act of 2011
 

Similar a Arithmetic

Adding and subtracting
Adding and subtractingAdding and subtracting
Adding and subtracting
Diana Pineda
 
Thursday, september 26, 2013
Thursday, september 26, 2013Thursday, september 26, 2013
Thursday, september 26, 2013
khyps13
 
1 arithmetic
1 arithmetic1 arithmetic
1 arithmetic
fyjordan9
 
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
hyacinthshackley2629
 
3 Performing Mensuration and Calculation.pptx
3 Performing  Mensuration and Calculation.pptx3 Performing  Mensuration and Calculation.pptx
3 Performing Mensuration and Calculation.pptx
GemDL
 

Similar a Arithmetic (20)

Adding and subtracting
Adding and subtractingAdding and subtracting
Adding and subtracting
 
Thursday, september 26, 2013
Thursday, september 26, 2013Thursday, september 26, 2013
Thursday, september 26, 2013
 
Ch02 primitive-data-definite-loops
Ch02 primitive-data-definite-loopsCh02 primitive-data-definite-loops
Ch02 primitive-data-definite-loops
 
1 arithmetic
1 arithmetic1 arithmetic
1 arithmetic
 
CST2403 NOTES
CST2403 NOTESCST2403 NOTES
CST2403 NOTES
 
For Loops and Variables in Java
For Loops and Variables in JavaFor Loops and Variables in Java
For Loops and Variables in Java
 
divisibilitytheory_2042918529272231.pptx
divisibilitytheory_2042918529272231.pptxdivisibilitytheory_2042918529272231.pptx
divisibilitytheory_2042918529272231.pptx
 
Difference of Two Squares
Difference of Two SquaresDifference of Two Squares
Difference of Two Squares
 
Facility Layout in production management
Facility Layout in production managementFacility Layout in production management
Facility Layout in production management
 
Data type
Data typeData type
Data type
 
2 data 2011
2 data 20112 data 2011
2 data 2011
 
order of operations
order of operationsorder of operations
order of operations
 
coefficient variation
coefficient variationcoefficient variation
coefficient variation
 
Oop project
Oop projectOop project
Oop project
 
Civil Service Review in Math.pptx
Civil Service Review in Math.pptxCivil Service Review in Math.pptx
Civil Service Review in Math.pptx
 
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
11414 2.3 Homework (Quadratic Equations)courses.thinkwel.docx
 
3 Performing Mensuration and Calculation.pptx
3 Performing  Mensuration and Calculation.pptx3 Performing  Mensuration and Calculation.pptx
3 Performing Mensuration and Calculation.pptx
 
Binary Arithmetic
Binary ArithmeticBinary Arithmetic
Binary Arithmetic
 
Polynomial Operations
Polynomial OperationsPolynomial Operations
Polynomial Operations
 
09.30.2019 to 10.03.2019 Polynomials Algebra111 I.pptx
09.30.2019 to 10.03.2019 Polynomials Algebra111 I.pptx09.30.2019 to 10.03.2019 Polynomials Algebra111 I.pptx
09.30.2019 to 10.03.2019 Polynomials Algebra111 I.pptx
 

Más de Michael Gordon (18)

Raspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture classRaspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture class
 
Strings2
Strings2Strings2
Strings2
 
Strings1
Strings1Strings1
Strings1
 
Introduction to Computer Science 111 Lab
Introduction to Computer Science 111 LabIntroduction to Computer Science 111 Lab
Introduction to Computer Science 111 Lab
 
Introduction to Linux, Pico, G++
Introduction to Linux, Pico, G++Introduction to Linux, Pico, G++
Introduction to Linux, Pico, G++
 
Strings
StringsStrings
Strings
 
Arrays, continued
Arrays, continuedArrays, continued
Arrays, continued
 
Arrays
ArraysArrays
Arrays
 
Scope of variables
Scope of variablesScope of variables
Scope of variables
 
Functions
FunctionsFunctions
Functions
 
Shape logic 1
Shape logic 1Shape logic 1
Shape logic 1
 
For loops
For loopsFor loops
For loops
 
While loops
While loopsWhile loops
While loops
 
If statements
If statementsIf statements
If statements
 
Variables
VariablesVariables
Variables
 
Output
OutputOutput
Output
 
Word cloud
Word cloudWord cloud
Word cloud
 
Millennial white paper
Millennial white paperMillennial white paper
Millennial white paper
 

Último

Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
amitlee9823
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
dlhescort
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Sheetaleventcompany
 
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
amitlee9823
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
dollysharma2066
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
daisycvs
 
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
dlhescort
 

Último (20)

Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLJAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
 
Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
Value Proposition canvas- Customer needs and pains
Value Proposition canvas- Customer needs and painsValue Proposition canvas- Customer needs and pains
Value Proposition canvas- Customer needs and pains
 
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Nelamangala Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
PHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation FinalPHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation Final
 
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
 
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 MonthsSEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
 

Arithmetic

  • 2. C++ Arithmetic Operators  + Addition  - Subtraction  * Multiplication  / Division  % Modulus (remainder)  () Parentheses
  • 3. Order of Operations  ()  * / %  + -  (4 + 2) / 2 + 4 = ???  Operation in () first: 4+2=6  Division next: 6 / 2 = 3  Last addition, 3 + 4 = 7
  • 4. Integer and Decimal Division  Division of two integers drops the decimal:  5 / 2 = 2 (not 2.5)  4 / 2 = 2  Division involving a double type, will result in a double result (with decimal)  5 / 2.0 = 2.5  4 / 2.0 = 2  One or both numbers must be a double  Same rules apply to addition, subtraction and multiplication.
  • 5. Data Types and Order  Sample operations and resulting data types:  6.0 + 5 / 2  Result of first operation: int  Result of second operation: double  • 5 + 5 / 2.0  Result of first operation: double  Result of second operation: double
  • 6. Type casting  Type casting changes one type to another.  For example if you want a double type result of integer division, you can do this:  double result = (double) 5 / 2  result now equals 2.5
  • 7. Type casting  Reverse example (double to int)  Drops the decimal part  double total = 100.5;  int value = (int) total;  value now equals 100.