- This document introduces key concepts in C++ including variables, data types, input/output, arithmetic operations, and program style. It discusses using libraries like iostream and namespaces for console input/output. Important concepts covered are variable declaration, data type compatibility, and precision in arithmetic operations.
This document outlines the course objectives and structure for CS-200 Object Oriented Programming taught by Muhammad Usman. The course will introduce students to object-oriented programming concepts in C++, including applying features to program design and implementation. Students will learn about classes, objects, inheritance and design patterns. The document provides information on textbooks, tools, assignments, exams and contact details for the instructor.
This document is the first chapter of a C++ basics textbook. It introduces fundamental C++ concepts like variables, data types, operators, input/output, and libraries. It provides examples of simple C++ programs and explains concepts like variables, data types, arithmetic operations, literals and constants, input/output streams, and basic program style guidelines. It emphasizes that C++ is case sensitive, variables must be declared before use, and care must be taken with numeric precision in expressions and calculations.
The document discusses an introduction to C++ programming. It covers basic C++ concepts like variables, data types, input/output, operators, and functions. It provides examples of simple C++ programs and explains concepts like object-oriented programming, classes, and inheritance. The document is meant to introduce students to C++ as their first object-oriented programming language.
This document summarizes key aspects of a C++ program discussed in Chapter 2 of the textbook. It explains the parts of a basic C++ program including comments, preprocessor directives, namespaces, functions and blocks. It also describes important C++ concepts such as data types, variables, constants, operators, and input/output using cout. Special characters, escape sequences and standard libraries are defined. Best practices for writing readable and maintainable C++ code are also covered.
This document discusses basic program elements in C++, including:
1. Initializing variables can be done in two ways - by appending an equal sign followed by the value (int a = 0), or by enclosing the value in parentheses (int a(0)). Both methods are valid in C++.
2. Variables can have either local or global scope - local variables are declared within a function while global variables are declared outside all functions.
3. Keywords are reserved words in C++ that have special meaning and cannot be used as regular identifiers. Common keywords include int, float, if, else, while, etc.
This document provides an introduction to programming with C++, including comments, data types, variables, arithmetic operators, and expressions. It discusses single-line and multi-line comments to document code. The fundamental C++ data types are integer, floating point, and character, each with different size ranges. Variables are declared with a data type and assigned values. Arithmetic operators allow mathematical expressions to be evaluated using precedence rules. Relational operators enable boolean expressions.
This document provides an introduction to basic elements of C++ programming, including:
- The structure of a basic C++ program with an example main function.
- Common data types like integers, floating point numbers, characters, and strings.
- Arithmetic operators and precedence.
- Expressions, input/output, and type casting.
- Variables, memory allocation, and initializing variables.
- Control structures like increment/decrement operators.
- Program style guidelines including comments and formatting.
The aim of this list of programming languages is to include all notable programming languages in existence, both those in current use and ... Note: This page does not list esoteric programming languages. .... Computer programming portal ...
C++ is an object-oriented programming language that is based on C and adds object-oriented programming features like classes, inheritance, and polymorphism. It was created by Bjarne Stroustrup at Bell Labs in the early 1980s. The document provides an introduction to C++ including its history, differences from C, program structure, data types, variables, input/output, and integrated development environments.
C# is an object-oriented programming language where all program logic must be contained within classes. It has features like garbage collection, inheritance, interfaces, namespaces, and data types similar to Java. Key concepts include value types vs reference types, boxing and unboxing, arrays, enums, structs, and parameter passing modes like pass by value, reference, and output. The language has control structures like if/else, switch, while, for, and foreach loops to control program flow. Methods can be instance methods or static methods.
02 functions, variables, basic input and output of c++Manzoor ALam
Ìý
This document discusses computer programming functions, variables, and basic input/output in C and C++. It covers:
- Defining and calling functions, function parameters and return values.
- Declaring and assigning values to variables of different data types like int, float, and double.
- Using basic input/output functions like cout and cin to display output and get user input.
- The scope of variables and how they work within and outside of functions.
C++ is an object-oriented programming language that features better memory management using dynamic allocation, support for OOP concepts like inheritance and polymorphism, portability across operating systems, and simple syntax similar to C. A basic "Hello World" C++ program includes header files, namespaces, main and return functions, and output statements. Comments are used to explain code and provide information to other programmers. Key elements of C++ include variables to store values, basic and user-defined data types, operators to perform actions, and control flow statements.
Lecture#2 Computer languages computer system and Programming EC-105NUST Stuff
Ìý
The document discusses three types of computer languages: machine language, assembly language, and high-level languages. Machine language is directly understood by computers using binary, while assembly language uses abbreviations and high-level languages resemble English. It also introduces C++ programming concepts like variables, data types, input/output streams, arithmetic operators, and conditional statements. Sample programs are provided to demonstrate printing text, getting user input, performing calculations, and making decisions.
This document provides an introduction to C++ programming concepts including variables, data types, constants, and I/O streams. It discusses basic C++ code structure and comments. Integral data types like char, bool, and integers are explained. Floating point types float and double are also introduced. The document demonstrates declaring and initializing variables as well as basic math operations on variables. Constants and the const keyword are described along with the #define preprocessor directive.
This document provides an overview of C++ programming and processing a C++ program. It discusses the evolution of programming languages and how a C++ program is compiled from source code to machine code. The document also explains that a C++ program is run by using an editor to create source code, preprocessing it, compiling it to create an object program, linking the object program, loading the executable code into memory, and executing it.
The document provides an introduction to programming fundamentals in C++, including basic syntax and components of a C++ program. It covers variables and data types, input/output, comments, and how to write a simple C++ program with preprocessor directives and a main function. The key topics discussed are variable declaration, fundamental data types like int, float, char, comments, and how to write a basic "Hello World" program in C++.
The document provides an introduction to the C++ programming language. It begins by introducing the authors and asking the reader who they are and why they joined the course. It then defines what a computer is and its basic functions of input, processing, and outputting data. The document continues by explaining the purpose of the course is to write programs using sequences of commands for the computer to solve problems. It provides examples of basic C++ code and explains how a simple program works. The rest of the document covers additional C++ programming concepts like variables, data types, input/output, operators, libraries, and more.
Esoft Metro Campus - Programming with C++
(Template - Virtusa Corporate)
Contents:
Overview of C++ Language
C++ Program Structure
C++ Basic Syntax
Primitive Built-in types in C++
Variable types
typedef Declarations
Enumerated Types
Variable Scope
Constants/Literals
Storage Classes
Operators
Control Constructs
Functions
Math Operations in C++
Arrays
Multi-dimensional Arrays
Strings
C++ Pointers
References
Date and Time
Structures
Basic Input / Output
Classes and Objects
Inheritance
Overloading
Polymorphism
Interfaces
Files and Streams
Exception Handling
Dynamic Memory
Namespaces
Templates
Preprocessor
Multithreading
This document provides an overview of the C programming language, covering topics such as the basic structure and skeleton of a C program, header files, the main function, running and compiling a C program, comments, variables, data types, constants, input/output operations and functions, programming errors, and keywords. It discusses the basic building blocks of a C program and how it is compiled and run, as well as fundamental concepts like variables, data types, operators, and functions.
Let's explore some other fundamental programming concepts
Chapter 2 focuses on:
character strings
primitive data
the declaration and use of variables
expressions and operator precedence
data conversions
The document provides an introduction to C programming, covering topics such as what a program is, programming languages, the history of C, and the development stages of a C program. It discusses the key components of a C program including preprocessing directives, the main function, and program layout. Examples are provided to illustrate C code structure and the use of variables, keywords, operators, input/output functions, and formatting output with printf.
C++ was developed in the 1980s by Bjarne Stroustrup at Bell Labs as an extension of the C programming language with features from Simula 67. It adds object-oriented capabilities to C by including classes, inheritance, polymorphism, and overloading. The first C++ program demonstrates basic elements like comments, preprocessor directives, namespaces, functions, input/output streams, and more. C++ supports various data types including integral types like int and char, floating-point types, and user-defined types.
The document provides an overview of database systems and their components. It discusses the purpose of database systems in addressing issues with file-based data storage like data redundancy, integrity problems, and concurrent access. It also describes the major components of a database system including the data models, data definition and manipulation languages, transaction management, storage management, database administrators, and users. The relational and entity-relationship models are explained as examples of common data models.
When more than one person uses a central computer at the same time, terminals are required. A terminal allows each user to input and output data to the computer simultaneously. A byte consists of 8 bits. FORTRAN is more suitable for scientific applications as it has features that support numeric and scientific computing tasks well. An error in software or hardware is alternatively called a glitch in computer jargon.
This document provides an introduction to programming with C++, including comments, data types, variables, arithmetic operators, and expressions. It discusses single-line and multi-line comments to document code. The fundamental C++ data types are integer, floating point, and character, each with different size ranges. Variables are declared with a data type and assigned values. Arithmetic operators allow mathematical expressions to be evaluated using precedence rules. Relational operators enable boolean expressions.
This document provides an introduction to basic elements of C++ programming, including:
- The structure of a basic C++ program with an example main function.
- Common data types like integers, floating point numbers, characters, and strings.
- Arithmetic operators and precedence.
- Expressions, input/output, and type casting.
- Variables, memory allocation, and initializing variables.
- Control structures like increment/decrement operators.
- Program style guidelines including comments and formatting.
The aim of this list of programming languages is to include all notable programming languages in existence, both those in current use and ... Note: This page does not list esoteric programming languages. .... Computer programming portal ...
C++ is an object-oriented programming language that is based on C and adds object-oriented programming features like classes, inheritance, and polymorphism. It was created by Bjarne Stroustrup at Bell Labs in the early 1980s. The document provides an introduction to C++ including its history, differences from C, program structure, data types, variables, input/output, and integrated development environments.
C# is an object-oriented programming language where all program logic must be contained within classes. It has features like garbage collection, inheritance, interfaces, namespaces, and data types similar to Java. Key concepts include value types vs reference types, boxing and unboxing, arrays, enums, structs, and parameter passing modes like pass by value, reference, and output. The language has control structures like if/else, switch, while, for, and foreach loops to control program flow. Methods can be instance methods or static methods.
02 functions, variables, basic input and output of c++Manzoor ALam
Ìý
This document discusses computer programming functions, variables, and basic input/output in C and C++. It covers:
- Defining and calling functions, function parameters and return values.
- Declaring and assigning values to variables of different data types like int, float, and double.
- Using basic input/output functions like cout and cin to display output and get user input.
- The scope of variables and how they work within and outside of functions.
C++ is an object-oriented programming language that features better memory management using dynamic allocation, support for OOP concepts like inheritance and polymorphism, portability across operating systems, and simple syntax similar to C. A basic "Hello World" C++ program includes header files, namespaces, main and return functions, and output statements. Comments are used to explain code and provide information to other programmers. Key elements of C++ include variables to store values, basic and user-defined data types, operators to perform actions, and control flow statements.
Lecture#2 Computer languages computer system and Programming EC-105NUST Stuff
Ìý
The document discusses three types of computer languages: machine language, assembly language, and high-level languages. Machine language is directly understood by computers using binary, while assembly language uses abbreviations and high-level languages resemble English. It also introduces C++ programming concepts like variables, data types, input/output streams, arithmetic operators, and conditional statements. Sample programs are provided to demonstrate printing text, getting user input, performing calculations, and making decisions.
This document provides an introduction to C++ programming concepts including variables, data types, constants, and I/O streams. It discusses basic C++ code structure and comments. Integral data types like char, bool, and integers are explained. Floating point types float and double are also introduced. The document demonstrates declaring and initializing variables as well as basic math operations on variables. Constants and the const keyword are described along with the #define preprocessor directive.
This document provides an overview of C++ programming and processing a C++ program. It discusses the evolution of programming languages and how a C++ program is compiled from source code to machine code. The document also explains that a C++ program is run by using an editor to create source code, preprocessing it, compiling it to create an object program, linking the object program, loading the executable code into memory, and executing it.
The document provides an introduction to programming fundamentals in C++, including basic syntax and components of a C++ program. It covers variables and data types, input/output, comments, and how to write a simple C++ program with preprocessor directives and a main function. The key topics discussed are variable declaration, fundamental data types like int, float, char, comments, and how to write a basic "Hello World" program in C++.
The document provides an introduction to the C++ programming language. It begins by introducing the authors and asking the reader who they are and why they joined the course. It then defines what a computer is and its basic functions of input, processing, and outputting data. The document continues by explaining the purpose of the course is to write programs using sequences of commands for the computer to solve problems. It provides examples of basic C++ code and explains how a simple program works. The rest of the document covers additional C++ programming concepts like variables, data types, input/output, operators, libraries, and more.
Esoft Metro Campus - Programming with C++
(Template - Virtusa Corporate)
Contents:
Overview of C++ Language
C++ Program Structure
C++ Basic Syntax
Primitive Built-in types in C++
Variable types
typedef Declarations
Enumerated Types
Variable Scope
Constants/Literals
Storage Classes
Operators
Control Constructs
Functions
Math Operations in C++
Arrays
Multi-dimensional Arrays
Strings
C++ Pointers
References
Date and Time
Structures
Basic Input / Output
Classes and Objects
Inheritance
Overloading
Polymorphism
Interfaces
Files and Streams
Exception Handling
Dynamic Memory
Namespaces
Templates
Preprocessor
Multithreading
This document provides an overview of the C programming language, covering topics such as the basic structure and skeleton of a C program, header files, the main function, running and compiling a C program, comments, variables, data types, constants, input/output operations and functions, programming errors, and keywords. It discusses the basic building blocks of a C program and how it is compiled and run, as well as fundamental concepts like variables, data types, operators, and functions.
Let's explore some other fundamental programming concepts
Chapter 2 focuses on:
character strings
primitive data
the declaration and use of variables
expressions and operator precedence
data conversions
The document provides an introduction to C programming, covering topics such as what a program is, programming languages, the history of C, and the development stages of a C program. It discusses the key components of a C program including preprocessing directives, the main function, and program layout. Examples are provided to illustrate C code structure and the use of variables, keywords, operators, input/output functions, and formatting output with printf.
C++ was developed in the 1980s by Bjarne Stroustrup at Bell Labs as an extension of the C programming language with features from Simula 67. It adds object-oriented capabilities to C by including classes, inheritance, polymorphism, and overloading. The first C++ program demonstrates basic elements like comments, preprocessor directives, namespaces, functions, input/output streams, and more. C++ supports various data types including integral types like int and char, floating-point types, and user-defined types.
The document provides an overview of database systems and their components. It discusses the purpose of database systems in addressing issues with file-based data storage like data redundancy, integrity problems, and concurrent access. It also describes the major components of a database system including the data models, data definition and manipulation languages, transaction management, storage management, database administrators, and users. The relational and entity-relationship models are explained as examples of common data models.
When more than one person uses a central computer at the same time, terminals are required. A terminal allows each user to input and output data to the computer simultaneously. A byte consists of 8 bits. FORTRAN is more suitable for scientific applications as it has features that support numeric and scientific computing tasks well. An error in software or hardware is alternatively called a glitch in computer jargon.
This document outlines the key features of an Open Nebula cloud computing platform including its interface and API capabilities, user and resource management features using access control lists and accounting, host and virtual machine management, networking options using a host manager and Open vSwitch, and centralized storage and image management.
This document provides an introduction to SQL and relational database concepts. It explains that SQL is the standard language used to store, manipulate, and query data in relational database management systems. The document also outlines the main SQL commands: DDL for data definition, DML for data manipulation, DCL for data control, and DQL for data queries. It provides examples of key relational database concepts like tables, records, columns and cells. It also defines important SQL constraints and data integrity rules.
This document provides an overview of database management systems (DBMS). It defines a DBMS as consisting of a collection of persistent data and a set of programs to access and manage that data. The document then briefly discusses the history of DBMS development from early hierarchical models to today's dominant relational model. It describes the purposes of a DBMS in ensuring data integrity, security, and independence. The document outlines the architecture of a DBMS including its external, conceptual, and internal levels. It also defines the components, advantages, and disadvantages of a DBMS and describes common data languages like SQL.
The document discusses the five generations of computers from the 1940s to present. The first generation used vacuum tubes, were room-sized, and relied on machine language. Transistors replaced vacuum tubes in the second generation, which were smaller and used symbolic language. Integrated circuits were developed in the third generation, making computers even smaller. The fourth generation saw the development of microprocessors that put all computer components on a single chip and allowed for GUIs. The fifth generation, still in development, focuses on artificial intelligence through parallel processing and superconductors.
The document describes the basic components and functions of a computer system. It explains that a computer receives input through various input devices like a keyboard, mouse, or scanner. The input is processed by the central processing unit (CPU), which includes the arithmetic logic unit (ALU) and control unit. The CPU performs calculations and controls the other units. The output is sent to devices like monitors or printers for viewing. Data and instructions are stored in the computer's primary and secondary memory during processing.
2025 Women Leaders Program - Award WinningSonia McDonald
Ìý
Empower & Lead: Women in Leadership
Dive into our award-winning and dynamic programs designed to boost your confidence and equip you with bold tools and strategies. Unleash your unique leadership potential and lead with flair!
Elevate Your Game with the Women Leaders Program
Step up to the challenge with Sonia McDonald’s dynamic leadership program, perfectly blending neuroscience, personal, and professional development. With over three decades of expertise in leadership and HR, Sonia has designed a program that adapts to your busy lifestyle, offering both virtual and in-house options. Explore ten robust modules equipped with an all-encompassing toolkit, infused with cutting-edge neuroscience to enhance your understanding of leadership dynamics. Choose from engaging monthly group coaching or personalized 1:1 sessions with Sonia.
If you’re ready for a transformative journey focused on growth, neuroscience-backed courage, leadership, and freedom, this is your call to action. Join us and start leading like never before!
Transform Your Leadership.
Transform Your Life.
Women are underrepresented in key decision-making roles across almost all industries in the Australian workforce, women comprise only:
19.4% of CEOs
32.5% of key management positions
33% of board members
18% of board chairs.
IT’S TIME FOR CHANGE. JOIN THE PROGRAM TODAY.
Maximise Your Leadership Skills
Achieve the best results for yourself, your team, and for the business.
Develop & Grow Your Courage
Build courageous habits to live the life you choose.
Enhance Your Career Progression
Step in, stand up, lead and get your seat at the Table.
https://soniamcdonald.com.au/women-leaders-program/
Anti-Viral Agents.pptx Medicinal Chemistry III, B Pharm SEM VISamruddhi Khonde
Ìý
Antiviral agents are crucial in combating viral infections, causing a variety of diseases from mild to life-threatening. Developed through medicinal chemistry, these drugs target viral structures and processes while minimizing harm to host cells. Viruses are classified into DNA and RNA viruses, with each replicating through distinct mechanisms. Treatments for herpesviruses involve nucleoside analogs like acyclovir and valacyclovir, which inhibit the viral DNA polymerase. Influenza is managed with neuraminidase inhibitors like oseltamivir and zanamivir, which prevent the release of new viral particles. HIV is treated with a combination of antiretroviral drugs targeting various stages of the viral life cycle. Hepatitis B and C are treated with different strategies, with nucleoside analogs like lamivudine inhibiting viral replication and direct-acting antivirals targeting the viral RNA polymerase and other key proteins.
Antiviral agents are designed based on their mechanisms of action, with several categories including nucleoside and nucleotide analogs, protease inhibitors, neuraminidase inhibitors, reverse transcriptase inhibitors, and integrase inhibitors. The design of these agents often relies on understanding the structure-activity relationship (SAR), which involves modifying the chemical structure of compounds to enhance efficacy, selectivity, and bioavailability while reducing side effects. Despite their success, challenges such as drug resistance, viral mutation, and the need for long-term therapy remain.
Measles Outbreak—Southwestern US— This briefing reviews the current situation surrounding the measles outbreaks in Texas, New Mexico, Oklahoma, and Kansas.
The Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by the Yale School of Public Health faculty and graduate students in response to the 2010 Haiti Earthquake.
Each year, students enrolled in Environmental Health Science Course 581—Public Health Emergencies: Disaster Planning and Response produce the VMOC Briefs. These briefs compile diverse information sources—including status reports, maps, news articles, and web content—into a single, easily digestible document that can be widely shared and used interactively.
Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt it seamlessly.
The students learn by doing, quickly discovering how and where to find criticalÌýinformation and presentingÌýit in an easily understood manner.
Unit1 Inroduction to Internal Combustion EnginesNileshKumbhar21
Ìý
Introduction of I. C. Engines, Types of engine, working of engine, Nomenclature of engine, Otto cycle, Diesel cycle Fuel air cycles Characteristics of fuel - air mixtures Actual cycles, Valve timing diagram for high and low speed engine, Port timing diagram
Stages of combustion, Ignition lag, Flame propagation, Factors affecting flame
speed, Abnormal combustion, Influence of engine design and operating
variables on detonation, Fuel rating, Octane number, Fuel additives, HUCR,
Requirements of combustion chambers of S.I. Engines and its types.
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesCeline George
Ìý
Odoo offers several ways to apply the discounts on sales orders, providing flexibility for various scenarios. The discounts applied on the sales order lines are global discounts, fixed discounts, and discounts on all order lines. In this slide, we will learn how to grant discounts on the sale order line in Odoo 18.
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesCeline 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
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
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"
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
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
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