ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Learning Objectives
• Introduction to C++
– Origins, Object-Oriented Programming, Terms
• Variables, Expressions, and
Assignment Statements
• Console Input/Output
• Program Style
• Libraries and Namespaces
Introduction to C++
• C++ Origins
– Low-level languages
• Machine, assembly
– High-level languages
• C, C++, ADA, COBOL, FORTRAN
– Object-Oriented-Programming in C++
• C++ Terminology
– Programs and functions
– Basic Input/Output (I/O) with cin and cout
Display 1.1
A Sample C++ Program (1 of 2)
C++ Variables
• C++ Identifiers
– Keywords/reserved words vs. Identifiers
– Case-sensitivity and validity of identifiers
– Meaningful names!
• Variables
– A memory location to store data for a program
– Must declare all data before use in program
Data Types:
Display 1.2 Simple Types (1 of 2)
Data Types:
Display 1.2 Simple Types (2 of 2)
Assigning Data
• Initializing data in declaration statement
– Results "undefined" if you don’t!
• int myValue = 0;
• Assigning data during execution
– Lvalues (left-side) & Rvalues (right-side)
• Lvalues must be variables
• Rvalues can be any expression
• Example:
distance = rate * time;
Lvalue: "distance"
Rvalue: "rate * time"
Assigning Data: Shorthand Notations
• Display, page 14
Data Assignment Rules
• Compatibility of Data Assignments
– Type mismatches
• General Rule: Cannot place value of one type into variable of another
type
– intVar = 2.99; // 2 is assigned to intVar!
• Only integer part "fits", so that’s all that goes
• Called "implicit" or "automatic type conversion"
– Literals
• 2, 5.75, "Z", "Hello World"
• Considered "constants": can’t change in program
Literal Data
• Literals
– Examples:
• 2 // Literal constant int
• 5.75 // Literal constant double
• "Z" // Literal constant char
• "Hello World" // Literal constant string
• Cannot change values during execution
• Called "literals" because you "literally typed"
them in your program!
Escape Sequences
• "Extend" character set
• Backslash,  preceding a character
– Instructs compiler: a special "escape
character" is coming
– Following character treated as
"escape sequence char"
– Display 1.3 next slide
Display 1.3
Some Escape Sequences (1 of 2)
Display 1.3
Some Escape Sequences (2 of 2)
Constants
• Naming your constants
– Literal constants are "OK", but provide
little meaning
• e.g., seeing 24 in a pgm, tells nothing about
what it represents
• Use named constants instead
– Meaningful name to represent data
const int NUMBER_OF_STUDENTS = 24;
• Called a "declared constant" or "named constant"
• Now use it’s name wherever needed in program
• Added benefit: changes to value result in one fix
Arithmetic Operators:
Display 1.4 Named Constant (1 of 2)
• Standard Arithmetic Operators
– Precedence rules – standard rules
Arithmetic Operators:
Display 1.4 Named Constant (2 of 2)
Arithmetic Precision
• Precision of Calculations
– VERY important consideration!
• Expressions in C++ might not evaluate as
you’d "expect"!
– "Highest-order operand" determines type
of arithmetic "precision" performed
– Common pitfall!
Arithmetic Precision Examples
• Examples:
– 17 / 5 evaluates to 3 in C++!
• Both operands are integers
• Integer division is performed!
– 17.0 / 5 equals 3.4 in C++!
• Highest-order operand is "double type"
• Double "precision" division is performed!
– int intVar1 =1, intVar2=2;
intVar1 / intVar2;
• Performs integer division!
• Result: 0!
Individual Arithmetic Precision
• Calculations done "one-by-one"
– 1 / 2 / 3.0 / 4 performs 3 separate divisions.
• First 1 / 2 equals 0
• Then 0 / 3.0 equals 0.0
• Then 0.0 / 4 equals 0.0!
• So not necessarily sufficient to change
just "one operand" in a large expression
– Must keep in mind all individual calculations
that will be performed during evaluation!
Type Casting
• Casting for Variables
– Can add ".0" to literals to force precision
arithmetic, but what about variables?
• We can’t use "myInt.0"!
– static_cast<double>intVar
– Explicitly "casts" or "converts" intVar to
double type
• Result of conversion is then used
• Example expression:
doubleVar = static_cast<double>intVar1 / intVar2;
– Casting forces double-precision division to take place
among two integer variables!
Type Casting
• Two types
– Implicit—also called "Automatic"
• Done FOR you, automatically
17 / 5.5
This expression causes an "implicit type cast" to
take place, casting the 17  17.0
– Explicit type conversion
• Programmer specifies conversion with cast operator
(double)17 / 5.5
Same expression as above, using explicit cast
(double)myInt / myDouble
More typical use; cast operator on variable
Shorthand Operators
• Increment & Decrement Operators
– Just short-hand notation
– Increment operator, ++
intVar++; is equivalent to
intVar = intVar + 1;
– Decrement operator, --
intVar--; is equivalent to
intVar = intVar – 1;
Shorthand Operators: Two Options
• Post-Increment
intVar++
– Uses current value of variable, THEN increments it
• Pre-Increment
++intVar
– Increments variable first, THEN uses new value
• "Use" is defined as whatever "context"
variable is currently in
• No difference if "alone" in statement:
intVar++; and ++intVar;  identical result
Post-Increment in Action
• Post-Increment in Expressions:
int n = 2,
valueProduced;
valueProduced = 2 * (n++);
cout << valueProduced << endl;
cout << n << endl;
– This code segment produces the output:
4
3
– Since post-increment was used
Pre-Increment in Action
• Now using Pre-increment:
int n = 2,
valueProduced;
valueProduced = 2 * (++n);
cout << valueProduced << endl;
cout << n << endl;
– This code segment produces the output:
6
3
– Because pre-increment was used
Console Input/Output
• I/O objects cin, cout, cerr
• Defined in the C++ library called
<iostream>
• Must have these lines (called pre-
processor directives) near start of file:
– #include <iostream>
using namespace std;
– Tells C++ to use appropriate library so we can
use the I/O objects cin, cout, cerr
Console Output
• What can be outputted?
– Any data can be outputted to display screen
• Variables
• Constants
• Literals
• Expressions (which can include all of above)
– cout << numberOfGames << " games played.";
2 values are outputted:
"value" of variable numberOfGames,
literal string " games played."
• Cascading: multiple values in one cout
Separating Lines of Output
• New lines in output
– Recall: "n" is escape sequence for the
char "newline"
• A second method: object endl
• Examples:
cout << "Hello Worldn";
• Sends string "Hello World" to display, & escape
sequence "n", skipping to next line
cout << "Hello World" << endl;
• Same result as above
Formatting Output
• Formatting numeric values for output
– Values may not display as you’d expect!
cout << "The price is $" << price << endl;
• If price (declared double) has value 78.5, you
might get:
– The price is $78.500000 or:
– The price is $78.5
• We must explicitly tell C++ how to output numbers in
our programs!
Error Output
• Output with cerr
– cerr works same as cout
– Provides mechanism for distinguishing
between regular output and error output
• Re-direct output streams
– Most systems allow cout and cerr to be
"redirected" to other devices
• e.g., line printer, output file, error console, etc.
Input Using cin
• cin for input, cout for output
• Differences:
– ">>" (extraction operator) points opposite
• Think of it as "pointing toward where the data goes"
– Object name "cin" used instead of "cout"
– No literals allowed for cin
• Must input "to a variable"
• cin >> num;
– Waits on-screen for keyboard entry
– Value entered at keyboard is "assigned" to num
Prompting for Input: cin and cout
• Always "prompt" user for input
cout << "Enter number of dragons: ";
cin >> numOfDragons;
– Note no "n" in cout. Prompt "waits" on same
line for keyboard input as follows:
Enter number of dragons: ____
• Underscore above denotes where keyboard entry
is made
• Every cin should have cout prompt
– Maximizes user-friendly input/output
Program Style
• Bottom-line: Make programs easy to read and modify
• Comments, two methods:
– // Two slashes indicate entire line is to be ignored
– /*Delimiters indicates everything between is ignored*/
– Both methods commonly used
• Identifier naming
– ALL_CAPS for constants
– lowerToUpper for variables
– Most important: MEANINGFUL NAMES!
Libraries
• C++ Standard Libraries
• #include <Library_Name>
– Directive to "add" contents of library file to
your program
– Called "preprocessor directive"
• Executes before compiler, and simply "copies"
library file into your program file
• C++ has many libraries
– Input/output, math, strings, etc.
Namespaces
• Namespaces defined:
– Collection of name definitions
• For now: interested in namespace "std"
– Has all standard library definitions we need
• Examples:
#include <iostream>
using namespace std;
• Includes entire standard library of name definitions
• #include <iostream>using std::cin;
using std::cout;
• Can specify just the objects we want
Summary 1
• C++ is case-sensitive
• Use meaningful names
– For variables and constants
• Variables must be declared before use
– Should also be initialized
• Use care in numeric manipulation
– Precision, parentheses, order of operations
• #include C++ libraries as needed
Summary 2
• Object cout
– Used for console output
• Object cin
– Used for console input
• Object cerr
– Used for error messages
• Use comments to aid understanding of
your program
– Do not overcomment

More Related Content

Similar to C++ basic.ppt (20)

Chapter 2 Introduction to C++
Chapter 2             Introduction to C++Chapter 2             Introduction to C++
Chapter 2 Introduction to C++
GhulamHussain142878
Ìý
Lecture 2 variables
Lecture 2 variablesLecture 2 variables
Lecture 2 variables
Tony Apreku
Ìý
Basic Elements of C++
Basic Elements of C++Basic Elements of C++
Basic Elements of C++
Jason J Pulikkottil
Ìý
Basics of c++ Programming Language
Basics of c++ Programming LanguageBasics of c++ Programming Language
Basics of c++ Programming Language
Ahmad Idrees
Ìý
Cs1123 3 c++ overview
Cs1123 3 c++ overviewCs1123 3 c++ overview
Cs1123 3 c++ overview
TAlha MAlik
Ìý
Introduction to C#
Introduction to C#Introduction to C#
Introduction to C#
ANURAG SINGH
Ìý
02 functions, variables, basic input and output of c++
02   functions, variables, basic input and output of c++02   functions, variables, basic input and output of c++
02 functions, variables, basic input and output of c++
Manzoor ALam
Ìý
C++
C++C++
C++
MuhammadSaad281
Ìý
Lecture#2 Computer languages computer system and Programming EC-105
Lecture#2 Computer languages computer system and Programming EC-105Lecture#2 Computer languages computer system and Programming EC-105
Lecture#2 Computer languages computer system and Programming EC-105
NUST Stuff
Ìý
C++ L01-Variables
C++ L01-VariablesC++ L01-Variables
C++ L01-Variables
Mohammad Shaker
Ìý
Chap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptxChap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptx
Ronaldo Aditya
Ìý
programming week 2.ppt
programming week 2.pptprogramming week 2.ppt
programming week 2.ppt
FatimaZafar68
Ìý
Begin with c++ Fekra Course #1
Begin with c++ Fekra Course #1Begin with c++ Fekra Course #1
Begin with c++ Fekra Course #1
Amr Alaa El Deen
Ìý
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
Ìý
Elementary_Of_C++_Programming_Language.ppt
Elementary_Of_C++_Programming_Language.pptElementary_Of_C++_Programming_Language.ppt
Elementary_Of_C++_Programming_Language.ppt
GordanaJovanoska1
Ìý
slidenotesece246jun2012-140803084954-phpapp01 (1).ppt
slidenotesece246jun2012-140803084954-phpapp01 (1).pptslidenotesece246jun2012-140803084954-phpapp01 (1).ppt
slidenotesece246jun2012-140803084954-phpapp01 (1).ppt
yatakonakiran2
Ìý
Cpu
CpuCpu
Cpu
Mohit Jain
Ìý
Chapter 2 java
Chapter 2 javaChapter 2 java
Chapter 2 java
ahmed abugharsa
Ìý
c-programming
c-programmingc-programming
c-programming
Zulhazmi Harith
Ìý
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
dhruvjs
Ìý
Chapter 2 Introduction to C++
Chapter 2             Introduction to C++Chapter 2             Introduction to C++
Chapter 2 Introduction to C++
GhulamHussain142878
Ìý
Lecture 2 variables
Lecture 2 variablesLecture 2 variables
Lecture 2 variables
Tony Apreku
Ìý
Basics of c++ Programming Language
Basics of c++ Programming LanguageBasics of c++ Programming Language
Basics of c++ Programming Language
Ahmad Idrees
Ìý
Cs1123 3 c++ overview
Cs1123 3 c++ overviewCs1123 3 c++ overview
Cs1123 3 c++ overview
TAlha MAlik
Ìý
Introduction to C#
Introduction to C#Introduction to C#
Introduction to C#
ANURAG SINGH
Ìý
02 functions, variables, basic input and output of c++
02   functions, variables, basic input and output of c++02   functions, variables, basic input and output of c++
02 functions, variables, basic input and output of c++
Manzoor ALam
Ìý
Lecture#2 Computer languages computer system and Programming EC-105
Lecture#2 Computer languages computer system and Programming EC-105Lecture#2 Computer languages computer system and Programming EC-105
Lecture#2 Computer languages computer system and Programming EC-105
NUST Stuff
Ìý
Chap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptxChap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptx
Ronaldo Aditya
Ìý
programming week 2.ppt
programming week 2.pptprogramming week 2.ppt
programming week 2.ppt
FatimaZafar68
Ìý
Begin with c++ Fekra Course #1
Begin with c++ Fekra Course #1Begin with c++ Fekra Course #1
Begin with c++ Fekra Course #1
Amr Alaa El Deen
Ìý
Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++Esoft Metro Campus - Programming with C++
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
Ìý
Elementary_Of_C++_Programming_Language.ppt
Elementary_Of_C++_Programming_Language.pptElementary_Of_C++_Programming_Language.ppt
Elementary_Of_C++_Programming_Language.ppt
GordanaJovanoska1
Ìý
slidenotesece246jun2012-140803084954-phpapp01 (1).ppt
slidenotesece246jun2012-140803084954-phpapp01 (1).pptslidenotesece246jun2012-140803084954-phpapp01 (1).ppt
slidenotesece246jun2012-140803084954-phpapp01 (1).ppt
yatakonakiran2
Ìý
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
1-19 CPP ºÝºÝߣs 2022-02-28 18_22_ 05.pdf
dhruvjs
Ìý

More from SityogInstituteOfTec1 (7)

dbms-1.pptx
dbms-1.pptxdbms-1.pptx
dbms-1.pptx
SityogInstituteOfTec1
Ìý
MCQ fundamental-4 .pptx
MCQ fundamental-4 .pptxMCQ fundamental-4 .pptx
MCQ fundamental-4 .pptx
SityogInstituteOfTec1
Ìý
diagram.pptx
diagram.pptxdiagram.pptx
diagram.pptx
SityogInstituteOfTec1
Ìý
SQL .pptx
SQL .pptxSQL .pptx
SQL .pptx
SityogInstituteOfTec1
Ìý
DBMS.pptx
DBMS.pptxDBMS.pptx
DBMS.pptx
SityogInstituteOfTec1
Ìý
computer-generations.ppt
computer-generations.pptcomputer-generations.ppt
computer-generations.ppt
SityogInstituteOfTec1
Ìý
block_diagram_of_computer.pptx
block_diagram_of_computer.pptxblock_diagram_of_computer.pptx
block_diagram_of_computer.pptx
SityogInstituteOfTec1
Ìý

Recently uploaded (20)

2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
Ìý
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
Ìý
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Ìý
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
Mukesh Kala
Ìý
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
Ìý
Yale VMOC Special Report - Measles Outbreak Southwest US 3-30-2025 FINAL v2...
Yale VMOC Special Report - Measles Outbreak  Southwest US 3-30-2025  FINAL v2...Yale VMOC Special Report - Measles Outbreak  Southwest US 3-30-2025  FINAL v2...
Yale VMOC Special Report - Measles Outbreak Southwest US 3-30-2025 FINAL v2...
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
Ìý
PUBH1000 - Module 6: Global Health ºÝºÝߣs
PUBH1000 - Module 6: Global Health ºÝºÝߣsPUBH1000 - Module 6: Global Health ºÝºÝߣs
PUBH1000 - Module 6: Global Health ºÝºÝߣs
JonathanHallett4
Ìý
Yale VMOC Special Report - Measles Outbreak Southwest US 3-26-2025 FINAL.pptx
Yale VMOC  Special Report - Measles Outbreak  Southwest US 3-26-2025  FINAL.pptxYale VMOC  Special Report - Measles Outbreak  Southwest US 3-26-2025  FINAL.pptx
Yale VMOC Special Report - Measles Outbreak Southwest US 3-26-2025 FINAL.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
Ìý
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
Ìý
Personal Brand exploration powerpoint pp1
Personal Brand exploration powerpoint pp1Personal Brand exploration powerpoint pp1
Personal Brand exploration powerpoint pp1
rayvoisine3
Ìý
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
Ìý
VTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme pptVTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme ppt
Suvarna Hiremath
Ìý
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASESCOMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
SonaliGupta630281
Ìý
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Ìý
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Ìý
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
Unit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition EnginesUnit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition Engines
NileshKumbhar21
Ìý
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
Ìý
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
Ìý
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
Ìý
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VIAnti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VI
Samruddhi Khonde
Ìý
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Ìý
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
3. AI Trust Layer, Governance – Explainability, Security & Compliance.pdf
Mukesh Kala
Ìý
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
Ìý
PUBH1000 - Module 6: Global Health ºÝºÝߣs
PUBH1000 - Module 6: Global Health ºÝºÝߣsPUBH1000 - Module 6: Global Health ºÝºÝߣs
PUBH1000 - Module 6: Global Health ºÝºÝߣs
JonathanHallett4
Ìý
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
Ìý
Personal Brand exploration powerpoint pp1
Personal Brand exploration powerpoint pp1Personal Brand exploration powerpoint pp1
Personal Brand exploration powerpoint pp1
rayvoisine3
Ìý
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
Ìý
VTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme pptVTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme ppt
Suvarna Hiremath
Ìý
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASESCOMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
COMMON HEALTH PROBLEMS INCLUDING COMMUNICABLES AND NON COMMUNICABLE DISEASES
SonaliGupta630281
Ìý
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Ìý
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Ìý
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Ìý
Unit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition EnginesUnit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition Engines
NileshKumbhar21
Ìý
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
Ìý
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
Ìý

C++ basic.ppt

  • 1. Learning Objectives • Introduction to C++ – Origins, Object-Oriented Programming, Terms • Variables, Expressions, and Assignment Statements • Console Input/Output • Program Style • Libraries and Namespaces
  • 2. Introduction to C++ • C++ Origins – Low-level languages • Machine, assembly – High-level languages • C, C++, ADA, COBOL, FORTRAN – Object-Oriented-Programming in C++ • C++ Terminology – Programs and functions – Basic Input/Output (I/O) with cin and cout
  • 3. Display 1.1 A Sample C++ Program (1 of 2)
  • 4. C++ Variables • C++ Identifiers – Keywords/reserved words vs. Identifiers – Case-sensitivity and validity of identifiers – Meaningful names! • Variables – A memory location to store data for a program – Must declare all data before use in program
  • 5. Data Types: Display 1.2 Simple Types (1 of 2)
  • 6. Data Types: Display 1.2 Simple Types (2 of 2)
  • 7. Assigning Data • Initializing data in declaration statement – Results "undefined" if you don’t! • int myValue = 0; • Assigning data during execution – Lvalues (left-side) & Rvalues (right-side) • Lvalues must be variables • Rvalues can be any expression • Example: distance = rate * time; Lvalue: "distance" Rvalue: "rate * time"
  • 8. Assigning Data: Shorthand Notations • Display, page 14
  • 9. Data Assignment Rules • Compatibility of Data Assignments – Type mismatches • General Rule: Cannot place value of one type into variable of another type – intVar = 2.99; // 2 is assigned to intVar! • Only integer part "fits", so that’s all that goes • Called "implicit" or "automatic type conversion" – Literals • 2, 5.75, "Z", "Hello World" • Considered "constants": can’t change in program
  • 10. Literal Data • Literals – Examples: • 2 // Literal constant int • 5.75 // Literal constant double • "Z" // Literal constant char • "Hello World" // Literal constant string • Cannot change values during execution • Called "literals" because you "literally typed" them in your program!
  • 11. Escape Sequences • "Extend" character set • Backslash, preceding a character – Instructs compiler: a special "escape character" is coming – Following character treated as "escape sequence char" – Display 1.3 next slide
  • 12. Display 1.3 Some Escape Sequences (1 of 2)
  • 13. Display 1.3 Some Escape Sequences (2 of 2)
  • 14. Constants • Naming your constants – Literal constants are "OK", but provide little meaning • e.g., seeing 24 in a pgm, tells nothing about what it represents • Use named constants instead – Meaningful name to represent data const int NUMBER_OF_STUDENTS = 24; • Called a "declared constant" or "named constant" • Now use it’s name wherever needed in program • Added benefit: changes to value result in one fix
  • 15. Arithmetic Operators: Display 1.4 Named Constant (1 of 2) • Standard Arithmetic Operators – Precedence rules – standard rules
  • 16. Arithmetic Operators: Display 1.4 Named Constant (2 of 2)
  • 17. Arithmetic Precision • Precision of Calculations – VERY important consideration! • Expressions in C++ might not evaluate as you’d "expect"! – "Highest-order operand" determines type of arithmetic "precision" performed – Common pitfall!
  • 18. Arithmetic Precision Examples • Examples: – 17 / 5 evaluates to 3 in C++! • Both operands are integers • Integer division is performed! – 17.0 / 5 equals 3.4 in C++! • Highest-order operand is "double type" • Double "precision" division is performed! – int intVar1 =1, intVar2=2; intVar1 / intVar2; • Performs integer division! • Result: 0!
  • 19. Individual Arithmetic Precision • Calculations done "one-by-one" – 1 / 2 / 3.0 / 4 performs 3 separate divisions. • First 1 / 2 equals 0 • Then 0 / 3.0 equals 0.0 • Then 0.0 / 4 equals 0.0! • So not necessarily sufficient to change just "one operand" in a large expression – Must keep in mind all individual calculations that will be performed during evaluation!
  • 20. Type Casting • Casting for Variables – Can add ".0" to literals to force precision arithmetic, but what about variables? • We can’t use "myInt.0"! – static_cast<double>intVar – Explicitly "casts" or "converts" intVar to double type • Result of conversion is then used • Example expression: doubleVar = static_cast<double>intVar1 / intVar2; – Casting forces double-precision division to take place among two integer variables!
  • 21. Type Casting • Two types – Implicit—also called "Automatic" • Done FOR you, automatically 17 / 5.5 This expression causes an "implicit type cast" to take place, casting the 17  17.0 – Explicit type conversion • Programmer specifies conversion with cast operator (double)17 / 5.5 Same expression as above, using explicit cast (double)myInt / myDouble More typical use; cast operator on variable
  • 22. Shorthand Operators • Increment & Decrement Operators – Just short-hand notation – Increment operator, ++ intVar++; is equivalent to intVar = intVar + 1; – Decrement operator, -- intVar--; is equivalent to intVar = intVar – 1;
  • 23. Shorthand Operators: Two Options • Post-Increment intVar++ – Uses current value of variable, THEN increments it • Pre-Increment ++intVar – Increments variable first, THEN uses new value • "Use" is defined as whatever "context" variable is currently in • No difference if "alone" in statement: intVar++; and ++intVar;  identical result
  • 24. Post-Increment in Action • Post-Increment in Expressions: int n = 2, valueProduced; valueProduced = 2 * (n++); cout << valueProduced << endl; cout << n << endl; – This code segment produces the output: 4 3 – Since post-increment was used
  • 25. Pre-Increment in Action • Now using Pre-increment: int n = 2, valueProduced; valueProduced = 2 * (++n); cout << valueProduced << endl; cout << n << endl; – This code segment produces the output: 6 3 – Because pre-increment was used
  • 26. Console Input/Output • I/O objects cin, cout, cerr • Defined in the C++ library called <iostream> • Must have these lines (called pre- processor directives) near start of file: – #include <iostream> using namespace std; – Tells C++ to use appropriate library so we can use the I/O objects cin, cout, cerr
  • 27. Console Output • What can be outputted? – Any data can be outputted to display screen • Variables • Constants • Literals • Expressions (which can include all of above) – cout << numberOfGames << " games played."; 2 values are outputted: "value" of variable numberOfGames, literal string " games played." • Cascading: multiple values in one cout
  • 28. Separating Lines of Output • New lines in output – Recall: "n" is escape sequence for the char "newline" • A second method: object endl • Examples: cout << "Hello Worldn"; • Sends string "Hello World" to display, & escape sequence "n", skipping to next line cout << "Hello World" << endl; • Same result as above
  • 29. Formatting Output • Formatting numeric values for output – Values may not display as you’d expect! cout << "The price is $" << price << endl; • If price (declared double) has value 78.5, you might get: – The price is $78.500000 or: – The price is $78.5 • We must explicitly tell C++ how to output numbers in our programs!
  • 30. Error Output • Output with cerr – cerr works same as cout – Provides mechanism for distinguishing between regular output and error output • Re-direct output streams – Most systems allow cout and cerr to be "redirected" to other devices • e.g., line printer, output file, error console, etc.
  • 31. Input Using cin • cin for input, cout for output • Differences: – ">>" (extraction operator) points opposite • Think of it as "pointing toward where the data goes" – Object name "cin" used instead of "cout" – No literals allowed for cin • Must input "to a variable" • cin >> num; – Waits on-screen for keyboard entry – Value entered at keyboard is "assigned" to num
  • 32. Prompting for Input: cin and cout • Always "prompt" user for input cout << "Enter number of dragons: "; cin >> numOfDragons; – Note no "n" in cout. Prompt "waits" on same line for keyboard input as follows: Enter number of dragons: ____ • Underscore above denotes where keyboard entry is made • Every cin should have cout prompt – Maximizes user-friendly input/output
  • 33. Program Style • Bottom-line: Make programs easy to read and modify • Comments, two methods: – // Two slashes indicate entire line is to be ignored – /*Delimiters indicates everything between is ignored*/ – Both methods commonly used • Identifier naming – ALL_CAPS for constants – lowerToUpper for variables – Most important: MEANINGFUL NAMES!
  • 34. Libraries • C++ Standard Libraries • #include <Library_Name> – Directive to "add" contents of library file to your program – Called "preprocessor directive" • Executes before compiler, and simply "copies" library file into your program file • C++ has many libraries – Input/output, math, strings, etc.
  • 35. Namespaces • Namespaces defined: – Collection of name definitions • For now: interested in namespace "std" – Has all standard library definitions we need • Examples: #include <iostream> using namespace std; • Includes entire standard library of name definitions • #include <iostream>using std::cin; using std::cout; • Can specify just the objects we want
  • 36. Summary 1 • C++ is case-sensitive • Use meaningful names – For variables and constants • Variables must be declared before use – Should also be initialized • Use care in numeric manipulation – Precision, parentheses, order of operations • #include C++ libraries as needed
  • 37. Summary 2 • Object cout – Used for console output • Object cin – Used for console input • Object cerr – Used for error messages • Use comments to aid understanding of your program – Do not overcomment