exponents & output page 85-87 & section 3.8

16
1 CS150 Introduction to Computer Science 1 Exponents & Output page 85-87 & Section 3.8

Upload: avye-gentry

Post on 01-Jan-2016

11 views

Category:

Documents


0 download

DESCRIPTION

Exponents & Output page 85-87 & Section 3.8. Advanced Output Section 3.8. How can we force output to look a particular way? Precision of numbers Spacing around output. Here are some floating point numbers: 72.0 72.00 72.000 Here is a table of data: 4 cat15 100 6 2.1. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Exponents & Output page 85-87 & Section 3.8

1CS150 Introduction to Computer Science 1

Exponents & Output

page 85-87 & Section 3.8

Page 2: Exponents & Output page 85-87 & Section 3.8

2CS150 Introduction to Computer Science 1

Advanced Output Section 3.8

How can we force output to look a particular way?o Precision of numbers

o Spacing around output

Here are some floating point numbers:72.072.0072.000

Here is a table of data: 4 cat 15100 6 2.1

Page 3: Exponents & Output page 85-87 & Section 3.8

3CS150 Introduction to Computer Science 1

Spacing

How can we output data in a table?

cs150 42 house3.1415 42 dog

string name = “cs150”;

int integer = 42;cout << setw(6) << name;

Page 4: Exponents & Output page 85-87 & Section 3.8

4CS150 Introduction to Computer Science 1

Spacing around output

#include <iostream>#include <iomanip> //New Library!#include <string>using namespace std;int main(){ double number = 3.141592653589793; string name = “cs150”; int integer = 42; cout << setw(6) << name << setw(6) << integer << endl; //cout << setw(6) << fixed << setprecision(3) << number; cout << setw(4) << integer <<endl; return 0;}

•cs150••••42••42

A • represents a blank space

Page 5: Exponents & Output page 85-87 & Section 3.8

5CS150 Introduction to Computer Science 1

Setw

Setw is not stickyo you must specify it every time

double number = 3.141592653589793;int integer = 42;cout << setw(6) << integer << integer << endl;cout << integer <<endl;

//output?

Page 6: Exponents & Output page 85-87 & Section 3.8

6CS150 Introduction to Computer Science 1

Practice

Write a program segment that allows the user to input two integer values into variables num1 and num2. Display both numbers as shown below, always displaying the smaller number first.

Please enter two numbers: 100 9The numbers are: 9 100

Page 7: Exponents & Output page 85-87 & Section 3.8

7CS150 Introduction to Computer Science 1

Precision

double number = 3.141592653589793;cout << number << endl; // default output

What does this output?

Precision

cout << setprecision(2) << number;

Output:

Page 8: Exponents & Output page 85-87 & Section 3.8

8CS150 Introduction to Computer Science 1

Spacing around output

#include <iostream>#include <iomanip> //New Library!#include <string>using namespace std;int main(){ double number = 3.141592653589793; string name = “cs150”; int integer = 42; cout << setw(6) << name << setw(6) << integer << endl; cout << setw(6) << fixed << setprecision(3) << number; cout << setw(4) << integer <<endl; return 0;}

•cs150••••42•3.142••42

A • represents a blank space

Page 9: Exponents & Output page 85-87 & Section 3.8

99/24/2008

CS150 Introduction to Computer Science 1

Precision

Precision can also be used to set the number of digits after the decimal point

Output:

double number = 3.141592653589793;

cout << fixed << setprecision(2) << number;

Page 10: Exponents & Output page 85-87 & Section 3.8

109/24/2008

CS150 Introduction to Computer Science 1

Precision of numbers

#include <iostream>#include <iomanip> //New Library!using namespace std;int main(){ double number = 3.141592653589793; cout << number << endl; // default output cout << fixed << setprecision(4) << number << endl; cout << fixed << setprecision(3) << number << endl; cout << fixed << setprecision(2) << number << endl; cout << fixed << setprecision(1) << number << endl; return 0;}3.141593.14163.1423.143.1

These numbers are rounded!

Explore on your own what happens if number is an integer.

Page 11: Exponents & Output page 85-87 & Section 3.8

11CS150 Introduction to Computer Science 1

Precision

Precision and fixed are stickyo remains in effect until changed

double number = 3.141592653589793;cout << fixed << setprecision(4) << number << endl;cout << setprecision(2) << number << endl;cout << number << endl;

// Output?

Page 12: Exponents & Output page 85-87 & Section 3.8

12CS150 Introduction to Computer Science 1

double

a double has a range of: o ±1.7E-308 to ±1.7E308

o however, only tracks 16 significant digits

double bignumber = 1234567891.123456789;

cout << fixed << setprecision(20);

cout << bignumber <<endl;

bignumber = 9234567891.123456789;

cout << bignumber <<endl;

Output:

Page 13: Exponents & Output page 85-87 & Section 3.8

13CS150 Introduction to Computer Science 1

Practice

Using the variables below, create the output shown:

double number = 3.141592653589793;string name = “cs150”;string animal = “cat”;string cover = “hat”;int integer = 42;

••••cat•3.1416••••hat••cs150•42••42••42•423.14159265•3.1

A • represents a blank space

Page 14: Exponents & Output page 85-87 & Section 3.8

14CS150 Introduction to Computer Science 1

Exponents (page 85-87 )

The exponent operator was missing from the list! x2 yn

C++ does not provide an exponent operator as part of the language

Use pow() in the cmath library

#include <cmath>

double area;

area = pow(4, 2); // area = 42

Page 15: Exponents & Output page 85-87 & Section 3.8

15CS150 Introduction to Computer Science 1

pow()

pow() is not an operatoro it is a function

o like main()

o double pow(double x, double y)

o it takes as arguments two doubles x and y

o it produces a double

Page 16: Exponents & Output page 85-87 & Section 3.8

16CS150 Introduction to Computer Science 1

Practice using exponents!

// Calculate the area of a square

double lengthOfSide = 4.9;

// Calculate the volume of a cube