C++ Input/Output Chapter 4 Topics

Similar documents
Formatting outputs String data type Interactive inputs File manipulators. Access to a library that defines 3. instead, a library provides input

Chapter 3 - Notes Input/Output

I/O Streams and Standard I/O Devices (cont d.)

C++ Input/Output: Streams

Chapter 3: Input/Output

Week 3: File I/O and Formatting 3.7 Formatting Output

The C++ Language. Output. Input and Output. Another type supplied by C++ Very complex, made up of several simple types.

CPE Summer 2015 Exam I (150 pts) June 18, 2015

C++ does not, as a part of the language, define how data are sent out and read into the program

Software Design & Programming I

Definition Matching (10 Points)

CS2141 Software Development using C/C++ Stream I/O

CSC 138 Structured Programming CHAPTER 4: TEXT FILE [PART 1]

File I/O. File Names and Types. I/O Streams. Stream Extraction and Insertion. A file name should reflect its contents

Piyush Kumar. input data. both cout and cin are data objects and are defined as classes ( type istream ) class

Text File I/O. #include <iostream> #include <fstream> using namespace std; int main() {

Strings and Streams. Professor Hugh C. Lauer CS-2303, System Programming Concepts

Streams. Parsing Input Data. Associating a File Stream with a File. Conceptual Model of a Stream. Parsing. Parsing

CS 151 Review #3. // More than one variable can be defined // in a statement. Multiple variables are // separated by a comma.

Chapter 14 Sequential Access Files

Lecture 3 The character, string data Types Files

We will exclusively use streams for input and output of data. Intro Programming in C++

File Operations. Lecture 16 COP 3014 Spring April 18, 2018

CPE 112 Spring 2015 Exam II (100 pts) March 4, Definition Matching (8 Points)

3.1. Chapter 3: Displaying a Prompt. Expressions and Interactivity

Expressions, Input, Output and Data Type Conversions

Name Section: M/W T/TH Number Definition Matching (8 Points)

Objectives. In this chapter, you will:

Streams. Rupesh Nasre.

Chapter 6. I/O Streams as an Introduction to Objects and Classes. Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Introduction to C++ (Extensions to C)

Chapter 6 Topics. While Statement Syntax Count-Controlled Loops Event-Controlled Loops Using the End-of-File Condition to Control Input Data

Convenient way to deal large quantities of data. Store data permanently (until file is deleted).

UEE1303(1070) S 12 Object-Oriented Programming in C++

Chapter Overview. I/O Streams as an Introduction to Objects and Classes. I/O Streams. Streams and Basic File I/O. Objects

Streams in C++ Stream concept. Reference information. Stream type declarations

File I/O Christian Schumacher, Info1 D-MAVT 2013

Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Input and Output. Data Processing Course, I. Hrivnacova, IPN Orsay

Review for COSC 120 8/31/2017. Review for COSC 120 Computer Systems. Review for COSC 120 Computer Structure

What we will learn about this week:

C++ Programming Lecture 10 File Processing

Name Section: M/W T/TH Number Definition Matching (6 Points)

Class 14. Input File Streams. Laura Marik Spring 2012 C++ Course Notes (Provided by Jason Minski)

COMP322 - Introduction to C++

String Variables and Output/Input. Adding Strings and Literals to Your Programming Skills and output/input formatting

Input/Output Streams: Customizing

Chapte t r r 9

Preview 8/28/2018. Review for COSC 120 (File Processing: Reading Data From a File)

by Pearson Education, Inc. All Rights Reserved. 2

Objectives. Chapter 2: Basic Elements of C++ Introduction. Objectives (cont d.) A C++ Program (cont d.) A C++ Program

The cin Object. cout << "Enter the length and the width of the rectangle? "; cin >> length >> width;

Chapter 2: Basic Elements of C++

CS242 COMPUTER PROGRAMMING

Chapter 2: Overview of C++

Chapter 2: Basic Elements of C++ Objectives. Objectives (cont d.) A C++ Program. Introduction

Today in CS162. External Files. What is an external file? How do we save data in a file? CS162 External Data Files 1

Module C++ I/O System Basics

Introduction to Programming EC-105. Lecture 2

Chapter 12. Streams and File I/O. Copyright 2010 Pearson Addison-Wesley. All rights reserved

Chapter 3. Numeric Types, Expressions, and Output

Chapter 12. Streams and File I/O. Copyright 2016 Pearson, Inc. All rights reserved.

ENGI 1020 Introduction to Computer Programming R E Z A S H A H I D I J U L Y 2 6,

Object Oriented Programming Using C++ UNIT-3 I/O Streams

Simple File I/O.

C++ Programming: From Problem Analysis to Program. Design, Fifth Edition. Chapter 1: An Overview of Computers and Programming Languages

! A program is a set of instructions that the. ! It must be translated. ! Variable: portion of memory that stores a value. char

3.1. Chapter 3: The cin Object in Program 3-1. Displaying a Prompt 8/23/2014. The cin Object

Chapter 3: Expressions and Interactivity

Chapter 5 Topics. Chapter 5 Topics. Flow of Control. bool Data Type. Flow of Control. Chapter 5

The C++ Language. Arizona State University 1

Topic 2. Big C++ by Cay Horstmann Copyright 2018 by John Wiley & Sons. All rights reserved

Chapter 5. Conditions, Logical Expressions, and Selection Control Structures

Input and Output File (Files and Stream )

c++ keywords: ( all lowercase ) Note: cin and cout are NOT keywords.

CSc Introduc/on to Compu/ng. Lecture 17 Edgardo Molina Fall 2011 City College of New York

Fall 2017 CISC/CMPE320 9/27/2017

Objects and streams and files CS427: Elements of Software Engineering

C++ Programming: From Problem Analysis to Program Design, Third Edition

Chapter 12. Streams and File I/O

Chapter 3: Expressions and Interactivity. Copyright 2012 Pearson Education, Inc. Thursday, October 9, 14

what are strings today: strings strings: output strings: declaring and initializing what are strings and why to use them reading: textbook chapter 8

COMP322 - Introduction to C++

Fundamentals of Programming CS-110. Lecture 2

READ THIS NOW! Failure to read and follow the instructions below may result in severe penalties. Do not start the test until instructed to do so!

TEST 1 CS 1410 Intro. To Computer Science Name KEY. October 13, 2010 Fall 2010

Engineering Problem Solving with C++, Etter/Ingber

CSCI 1061U Programming Workshop 2. C++ Basics

Chapter 2. Outline. Simple C++ Programs

C++ Basics. Lecture 2 COP 3014 Spring January 8, 2018

In this chapter, you will learn about: An Array Type for Strings. The Standard string Class. Vectors. Introduction Computer Science 1 CS 23021

PROGRAMMING EXAMPLE: Checking Account Balance

Absolute C++ Walter Savitch

This chapter introduces the notion of namespace. We also describe how to manage input and output with C++ commands via the terminal or files.

Physics 6720 I/O Methods October 30, C++ and Unix I/O Streams

Flow of Control. bool Data Type. Flow Of Control. Expressions. C++ Control Structures < <= > >= ==!= ! &&

1. In C++, reserved words are the same as predefined identifiers. a. True

Reading from and Writing to Files. Files (3.12) Steps to Using Files. Section 3.12 & 13.1 & Data stored in variables is temporary

CS31 Discussion 1E. Jie(Jay) Wang Week3 Oct.12

Object Oriented Programming In C++

Transcription:

Chapter 4 Topics Chapter 4 Program Input and the Software Design Process Input Statements to Read Values into a Program using >>, and functions get, ignore, getline Prompting for Interactive Input/Output (I/O) Using Data Files for Input and Output C++ Input/Output Chapter 4 Topics No built-in I/O in C++ A library provides input stream and output stream Object-Oriented Design Principles Functional Decomposition Methodology Software Engineering Tip Documentation Keyboard Screen executing program istream ostream 4 <iostream> Header File Giving a Value to a Variable Access to a library that defines 3 objects An istream object named cin (keyboard) An ostream object named cout (screen) An ostream object named cerr (screen) In your program you can assign (give) a value to the variable by using the assignment operator = ageofdog = 12; or by another method, such as cout << How old is your dog? ; cin >> ageofdog; 5

>> Operator >> is called the input or extraction operator >> is a binary operator >> is left associative Expression cin >> age Statement Has value cin cin >> age >> weight; Extraction Operator (>>) Variable cin is predefined to denote an input stream from the standard input device((the keyboard) The extraction operator >> called get from takes 2 operands; the left operand is a stream expression, such as cin--the right operand is a variable of simple type Extraction Operator (>>) Operator >> attempts to extract (inputs) the next item from the input stream and to store its value in the right operand variable >> skips over (actually reads but does not store anywhere) leading white space characters as it reads your data from the input stream(either keyboard or disk file) SYNTAX These examples yield the same result. cin >> length; cin >> width; Input Statements cin >> Variable >> Variable...; cin >> length >> width; Whitespace Characters Include... blanks tabs end-of-line (newline) characters newline character created by: v hitting Enter or Return at the keyboard or v by using the manipulator endl or by using the symbols "\n" in the program char char char At keyboard you type: A[space]B[space]C[Enter] first; middle; last; cin >> first ; cin >> middle ; cin >> last ; first middle last A B C first middle last NOTE: A file reading marker is left pointing to the newline character after the C in the input stream

At keyboard you type: [space]25[space]j[space]2[enter] int char float age; initial; bill; cin >> age; cin >> initial; cin >> bill; age initial bill 25 J 2.0 age initial bill NOTE: A file reading marker is left pointing to the newline character after the 2 in the input stream Keyboard and Screen I/O #include <iostream> input data Keyboard cin (of type istream) executing program cout (of type ostream) output data Screen NOTE: Another example using >> shows the location of the file reading marker STATEMENTS CONTENTS MARKER POSITION int i; 25 A\n char ch; 16.9\n float x; i ch x cin >> i; 25 A\n 25 16.9\n i ch x cin >> ch; 25 A 25 A\n 16.9\n i ch x cin >> x; 25 A 16.9 25 A\n i ch x 16.9\n Another Way to Read char Data The get() function can be used to read a single character. get() obtains the very next character from the input stream without skipping any leading whitespace characters At keyboard you type: A[space]B[space]C[Enter] char first; char middle; char last; first middle last Use function ignore() to skip characters The ignore() function is used to skip (read and discard) characters in the input stream The call: cin.get(first); cin.get(middle); cin.get(last); A B first middle last NOTE: The file reading marker is left pointing to the space after the B in the input stream 17 cin.ignore(howmany, whatchar); will skip over up to howmany characters or until whatchar has been read, whichever comes first

An Example Using cin.ignore() NOTE: shows the location of the file reading marker STATEMENTS CONTENTS MARKER POSITION int a; 957 34 1235\n int b; 128 96\n a b c int c; cin >> a >> b; 957 34 957 34 1235\n a b c 128 96\n 957 34 cin.ignore(100, \n ); 957 34 1235\n a b c 128 96\n 957 34 128 cin >> c; a b c 957 34 1235\n 128 96\n Another Example Using cin.ignore() NOTE: shows the location of the file reading marker STATEMENTS CONTENTS MARKER POSITION int i; A 22 B 16 C 19\n char ch; i ch cin >> ch; A 957 34 A 22 B 16 C 19\n i ch A cin.ignore(100, B ); 957 34 A 22 B 16 C 19\n i ch 16 A cin >> i; 957 34 A 22 B 16 C 19\n i ch Example String Input in C++ Input of a string is possible using the extraction operator >> string message; cin >> message; cout << message; However... >> Operator with Strings Using the extraction operator(>>) to read input characters into a string variable The >> operator skips any leading whitespace characters such as blanks and newlines It then reads successive characters into the string >> operator then stops at the first trailing whitespace character (which is not consumed, but remains waiting in the input stream) String Input Using >> string firstname; string lastname; cin >> firstname >> lastname; Results Using >> string firstname; string lastname; cin >> firstname >> lastname; Suppose input stream looks like this: Result Joe Hernandez 23 Joe Hernandez What are the string values? firstname lastname

getline() Function Because the extraction operator stops reading at the first trailing whitespace, >> cannot be used to input a string with blanks in it Use the getline function with 2 arguments to overcome this obstacle First argument is an input stream variable, and second argument is a string variable Example string message; getline(cin, message); getline(infilestream, str) getline does not skip leading whitespace characters such as blanks and newlines getline reads successive characters(including blanks) into the string, and stops when it reaches the newline character \n The newline is consumed by getline, but is not stored into the string variable String Input Using getline string firstname; string lastname; getline(cin, firstname); getline(cin, lastname); Results Using getline string firstname; string lastname; getline(cin, firstname); getline(cin, lastname); Suppose input stream looks like this: Joe Hernandez 23 What are the string values? Joe Hernandez 23? firstname lastname Interactive I/O In an interactive program the user enters information while the program is executing Before the user enters data, a prompt should be provided to explain what type of information should be entered The amount of information needed in the prompt depends on the complexity of the data being entered, and the sophistication of the person entering the data Prompting for Interactive I/O // Pattern: cout(prompt) cin(read value) cout << Enter part number : << endl; cin >> partnumber; cout << Enter quantity ordered : << endl; cin >> quantity; cout << Enter unit price : << endl; cin >> unitprice; // Calculate and print results

Prompting for Interactive I/O, cont... totalprice = quantity * unitprice; cout << Part # << partnumber << endl; cout << Quantity: << quantity << endl; cout << Unit Cost: $ << setprecision(2) << unitprice << endl; cout << Total Cost: $ << totalprice << endl; USING DATA FILES FOR INPUT AND OUTPUT Disk Files for I/O Disk I/O #include <fstream> input data disk file myinfile.dat executing program output data disk file myout.dat To use disk I/O Access #include <fstream> Choose valid identifiers for your file streams and declare them Open the files and associate them with disk names your variable (of type ifstream) your variable (of type ofstream) Disk I/O, cont... Disk I/O Statements #include <fstream> Use your file stream identifiers in your I/ O statements(using >> and <<, manipulators, get, ignore) Close the files ifstream myinfile; // Declarations ofstream myoutfile; myinfile.open( myin.dat ); // Open files myoutfile.open( myout.dat ); // Verify that they are open myinfile.close(); // Close files myoutfile.close();

Opening a File Opening a File Opening a file Associates the C++ identifier for your file with the physical(disk) name for the file If the input file does not exist on disk, open is not successful If the output file does not exist on disk, a new file with that name is created If the output file already exists, it is erased Opening a file Places a file reading marker at the very beginning of the file, pointing to the first character in the file Stream Fail State When a stream enters the fail state, Further I/O operations using that stream have no effect at all The computer does not automatically halt the program or give any error message Stream Fail State Possible reasons for entering fail state include: Invalid input data (often the wrong type) Opening an input file that doesn t exist Opening an output file on a disk that is already full or is write-protected Run Time File Name Entry #include <string> // Contains conversion function c_str ifstream infile; string filename; // Prompt: cout << Enter input file name: << endl; cin >> filename; // Convert string filename to a C string type infile.open(filename.c_str()); FUNCTIONAL DECOMPOSITION

Functional Decomposition A technique for developing a program in which the problem is divided into more easily handled subproblems The solutions of these subproblems create a solution to the overall problem Functional Decomposition In functional decomposition, we work from the abstract (a list of the major steps in our solution) to the particular (algorithmic steps that can be translated directly into code in C++ or another language) Functional Decomposition Focus is on actions and algorithms Begins by breaking the solution into a series of major steps; process continues until each subproblem cannot be divided further or has an obvious solution Functional Decomposition Units are modules representing algorithms A module is a collection of concrete and abstract steps that solves a subproblem A module structure chart (hierarchical solution tree) is often created Data plays a secondary role in support of actions to be performed Module Structure Chart Main Open Files Initialize Total Miles Get Data Compute Mileages Write Total Miles OBJECT-ORIENTED DESIGN Round To Nearest Tenth

Object-Oriented Design A technique for developing a program in which the solution is expressed in terms of objects -- self-contained entities composed of data and operations on that data cin cout More about OOD Languages supporting OOD include: C++, Java, Smalltalk, Eiffel, CLOS, and Object-Pascal >> get... Private data << setf... Private data A class is a programmer-defined data type and objects are variables of that type ignore setw More about OOD In C++, cin is an object of a data type (class) named istream, and cout is an object of a class ostream. Header files iostream and fstream contain definitions of stream classes A class generally contains private data and public operations (called member functions) Object-Oriented Design (OOD) Focus is on entities called objects and operations on those objects, all bundled together Begins by identifying the major objects in the problem, and choosing appropriate operations on those objects Object-Oriented Design (OOD) Units are objects; programs are collections of objects that communicate with each other Two Programming Methodologies Functional Object-Oriented Decomposition Design FUNCTION OBJECT Operations Data plays a leading role; algorithms are used to implement operations on the objects and to enable object interaction FUNCTION FUNCTION Data OBJECT Operations Data OBJECT Operations Data

What is an object? OBJECT An object contains data and operations checkingaccount Operations Data set of functions internal state OpenAccount WriteCheck MakeDeposit IsOverdrawn Private data: accoutnumber balance GetBalance OOD Used with Large Software Projects Objects within a program often model reallife objects in the problem to be solved Many libraries of pre-written classes and objects are available as-is for re-use in various programs OOD Used with Large Software Projects The OOD concept of inheritance allows the customization of an existing class to meet particular needs without having to inspect and modify the source code for that class This can reduce the time and effort needed to design, implement, and maintain large systems Software Engineering Tip Documentation SOFTWARE ENGINEERING Documentation includes the written problem specification, design, development history, and actual code of a problem Good documentation helps other programmers read and understand a program Good documentation invaluable when software is being debugged and modified (maintained)

Software Engineering Tip Documentation Documentation is both external and internal to the program External documentation includes the specifications, development history, and the design documents Internal documents includes the program format and self-documenting code-- meaningful identifiers and comments Software Engineering Tip Documentation Comments in your programs may be sufficient for someone reading or maintaining your programs However, if the program is to be used by nonprogrammers, then you must also provide a user's manual Keep documentation up-to-date and indicate any changes you made in pertinent documentation Names in Multiple Formats CASE STUDY Problem You are beginning to work on a problem that needs to output names in several formats along with the corresponding social security number. As a start, you decide to write a short C++ program that inputs a social security number and a single name and displays it in the different formats, so you can be certain that all of your string expressions are correct. Algorithm Main Module Level 0 Open files Get social security number Get name Write data in proper formats Close files Open Files Level 1 indata.open("name.dat") outdata.open("name.out") Get Name Get first name Get middle name or initial Get last name

Write Data in Proper Formats Write first name, blank, middle name, blank, last name, blank, social security number Write last name, comma, first name, blank, middle name, blank, social security number Write last name, comma, blank, first name, blank, middle initial, period, blank, social security number Write first name, blank, middle initial, period, blank, last name Middle initial Level 2 Set initial to middlename.substr(0, 1) + period Close files indata.close() outdata.close() C++ Program //************************************************************* // Format Names program // This program reads in a social security number, a first name // a middle name or initial, and a last name from file indata. // The name is written to file outdata in three formats: // 1. First name, middle name, last name, and social security // number. // 2. last name, first name, middle name, and social // security number // 3. last name, first name, middle initial, and social // security number // 4. First name, middle initial, last name //************************************************************* #include <fstream> // Access ofstream #include <string> // Access string using namespace std; int main() { // Declare and open files ifstream indata; ofstream outdata; indata.open("name.dat"); outdata.open("name.out"); // Declare variables string socialnum; string firstname; string lastname; string middlename; string initial; // Social security number // First name // Last name // Middle name // Middle initial // Read in data from file indata indata >> socialnum >> firstname >> middlename >> lastname; // Access middle initial and append a period initial = middlename.substr(0, 1) + '.';

// Output information in required formats outdata << firstname << ' ' << middlename << ' ' << lastname << ' ' << socialnum << endl; outdata << lastname << ", " << firstname << ' ' << middlename << ' ' << socialnum << endl; outdata << lastname << ", " << firstname << ' ' << initial << ' ' << socialnum << endl; outdata << firstname << ' ' << initial << ' ' << lastname; } // Close files indata.close(); outdata.close(); return 0;