Presentation is loading. Please wait.

Presentation is loading. Please wait.

Numeric Types, Expressions, and Output 1. Chapter 3 Topics Constants of Type int and float Evaluating Arithmetic Expressions Implicit Type Coercion and.

Similar presentations


Presentation on theme: "Numeric Types, Expressions, and Output 1. Chapter 3 Topics Constants of Type int and float Evaluating Arithmetic Expressions Implicit Type Coercion and."— Presentation transcript:

1 Numeric Types, Expressions, and Output 1

2 Chapter 3 Topics Constants of Type int and float Evaluating Arithmetic Expressions Implicit Type Coercion and Explicit Type Conversion Calling a Value-Returning Function Using Function Arguments Using C++ Library Functions in Expressions Calling a Void Function C++ Manipulators to Format Output String Operations length, find, and substr 2

3 3 C++ Data Types structured array struct union class address pointer reference simple integral enum char short int long bool floating float double long double

4 4 C++ Simple Data Types simple types integralfloating char short int long bool enum float double long double unsigned

5 Standard Data Types in C++ Integral Types represent whole numbers and their negatives declared as int, short, or long Floating Types represent real numbers with a decimal point declared as float or double Character Type represents single characters declared as char 5

6 Samples of C++ Data Values int sample values 4578 -45780 float sample values 95.27495..265 9521E-3-95E-195.213E2 char sample values ‘ B ’ ‘ d ’ ‘ 4 ’‘ ? ’ ‘ * ’ 6

7 7 2.7E4 means 2.7 x 10 4 = 2.7000 = 27000.0 2.7E-4 means 2.7 x 10 - 4 = 0002.7 = 0.00027

8 More About Floating Point Values Floating point numbers have an integer part and a fractional part, with a decimal point in between. Either the integer part or the fractional part, but not both, may be missing Examples 18.4 500..8 -127.358 8

9 More About Floating Point Values Alternatively, floating point values can have an exponent, as in scientific notation--the number preceding the letter E doesn’t need to include a decimal point Examples 1.84E1 5E2 8E-1 -.127358E3 9

10 Division Operator The result of the division operator depends on the type of its operands If one or both operands has a floating point type, the result is a floating point type. Otherwise, the result is an integer type Examples 11 / 4 has value 211.0 / 4.0has value 2.7511/ 4.0 has value 2.75 10

11 11 /******************************************************* FreezeBoil program This program computes the midpoint between the freezing and boiling points of water *******************************************************/ #include using namespace std; const float FREEZE_PT = 32.0; // Freezing point of water const float BOIL_PT = 212.0; // Boiling point of water int main()‏ { float avgTemp; // Holds the result of averaging // FREEZE_PT and BOIL_PT cout << “Water freezes at “ << FREEZE_PT << endl; cout << “ and boils at “ << BOIL_PT << “ degrees.” << endl; avgTemp = FREEZE_PT + BOIL_PT; avgTemp = avgTemp / 2.0; cout << “Halfway between is “; cout << avgTemp << “ degrees.” << endl; return 0; }

12 12 Function main Continued cout << “Water freezes at “ << FREEZE_PT << endl; cout << “ and boils at “ << BOIL_PT << “ degrees.” << endl; avgTemp = FREEZE_PT + BOIL_PT; avgTemp = avgTemp / 2.0; cout << “Halfway between is “; cout << avgTemp << “ degrees.” << endl; return 0; }

13 Modulus Operator The modulus operator % can only be used with integer type operands and always has an integer type result Its result is the integer type remainder of an integer division Example: 11 % 4 has value 3 because 13 )‏ 4 11 2R = 3

14 14 More C++ Operators 8 int age; age = 8; age = age + 1; age 9

15 15 Prefix Form Increment Operator 8 int age; age = 8; ++age; age 9

16 16 Postfix Form Increment Operator 8 int age; age = 8; age++; age 9

17 17 Decrement Operator 100 int dogs; dogs = 100; dogs--; dogs 99 dogs

18 Which Form to Use When the increment(or decrement) operator is used in a “stand alone” statement solely to add one(or subtract one) from a variable’s value, it can be used in either prefix or postfix form 18 dogs-- ; --dogs; USE EITHER

19 BUT... When the increment(or decrement) operator is used in a statement with other operators, the prefix and postfix forms can yield different results 19 We’ll see how later...

20 What is an Expression in C++? An expression is a valid arrangement of variables, constants, and operators In C++ each expression can be evaluated to compute a value of a given type The value of the expression 9.3 * 4.5 is 41.85 20

21 Operators can be binaryinvolving 2 operands 2 + 3 unaryinvolving 1 operand - 3 ternary involving 3 operands later 21

22 22 Some C++ Operators Precedence OperatorDescription Higher( )Function call +Positive - Negative * Multiplication / Division % Modulus ( remainder) ‏ +Addition - Subtraction Lower = Assignment

23 Precedence Higher Precedence determines which operator is applied first in an expression having several operators 23

24 Associativity Left to right associativity means that in an expression having 2 operators with the same priority, the left operator is applied first In C++ the binary operators *, /, %, +, - are all left associative Expression 9 - 5 - 1 means (9 - 5) - 1 4 – 1 = 3 24

25 Evaluate the Expression 7 * 10 - 5 % 3 * 4 + 9 (7 * 10) - 5 % 3 * 4 + 9 70 - 5 % 3 * 4 + 9 70 - (5 % 3) * 4 + 9 70 - 2 * 4 + 9 70 - ( 2 * 4) + 9 70 - 8 + 9 (70 - 8 ) + 9 62 + 9 71 25

26 Parentheses Parentheses can be used to change the usual order Parts in() are evaluated first Evaluate ( 7 *(10 - 5) % 3) * 4 + 9 (7 * 5 % 3 ) * 4 + 9 ( 35 % 3) * 4 + 9 2 * 4 + 9 8 + 9 17 26

27 Recall Assignment Operator Syntax Variable = Expression First, Expression on right is evaluated Then the resulting value is stored in the memory location of Variable on left NOTE: An automatic type coercion occurs after evaluation but before the value is stored if the types differ for Expression and Variable 27

28 What value is stored? float a; float b; a = 8.5; b = 9.37; a = b; 28 a b a b 8.5 9.37 ? ?

29 29 What is stored? ? float someFloat; someFloat someFloat = 12; // Causes implicit type conversion someFloat 12.0

30 30 What is stored? ? int someInt; someInt someInt = 4.8; // Causes implicit type conversion someInt 4

31 Type Casting is Explicit Conversion of Type int(4.8) has value4 float(5)has value5.0 float(7/4)has value1.0 float(7) / float(4)has value1.75 31

32 Some Expressions int age; ExampleValue age = 8 8 - age- 8 5 + 813 5 / 80 6.0 / 5.01.2 float(4 / 8)0.0 float(4) / 80.5 32

33 What values are stored? float loCost; float hiCost; loCost = 12.342; hiCost = 12.348; loCost = float(int(loCost * 100.0 + 0.5)) / 100.0; hiCost = float(int(hiCost * 100.0 + 0.5)) / 100.0; 33

34 34 Values were rounded to 2 decimal places 12.34 hiCost 12.35 loCost

35 35 Using Predefined Functions A function (subprogram): set of instructions When activated, it accomplishes a task main executes when a program is run Other functions execute only when called C++ includes a wealth of functions Predefined functions are organized as a collection of libraries called header files

36 36 Predefined Functions Header file may contain several functions To use a predefined function, you need the name of the appropriate header file You also need to know: Function name Number of parameters required Type of each parameter What the function is going to do

37 37 Predefined Function Example To use pow (power), include cmath pow has two numeric parameters The syntax is: pow(x,y) = x y x and y are the arguments or parameters In pow(2,3), the parameters are 2 and 3

38 HEADER FILE FUNCTION EXAMPLE VALUE OF CALL 38 fabs(x) fabs(-6.4) 6.4 pow(x,y) pow(2.0,3.0) 8.0 sqrt(x) sqrt(100.0) 10.0 log(x) log(2.0).693147 sqrt(x) sqrt(2.0) 1.41421 abs(i) abs(-6) 6

39 Write C++ Expressions for The square root of b 2 - 4ac sqrt(b * b - 4.0 * a * c) ‏ The square root of the average of myAge and yourAge sqrt((myAge + yourAge) / 2) ‏ 39

40 Manipulators Manipulators are used only in input and output statements endl, fixed, showpoint, setw, and setprecision are manipulators that can be used to control output format endl is use to terminate the current output line and create blank lines in output 40

41 Using Manipulators Fixed and Showpoint use the following statement to specify that(for output sent to the cout stream) decimal format(not scientific notation) be used, and that a decimal point be included(even for floating values with 0 as fractional part) cout << fixed << showpoint; 41

42 setprecision(n)‏ Requires #include and appears in an expression using insertion operator(<<) If fixed has already been specified, argument n determines the number of places displayed after the decimal point for floating point values Remains in effect until explicitly changed by another call to setprecision 42

43 43 What is exact output? #include // For setw() and setprecision()‏ #include using namespace std; int main()‏ { float myNumber = 123.4587; cout << fixed << showpoint; // Use decimal format // Print decimal points cout << “Number is ” << setprecision(3) << myNumber << endl; return 0; }

44 44 OUTPUT Number is 123.459 Value is rounded if necessary to be displayed with exactly 3 places after the decimal point

45 Manipulator setw “Set width” lets us control how many character positions the next data item should occupy when it is output setw is only for formatting numbers and strings, not char type data 45

46 setw(n)‏ Requires #include and appears in an expression using insertion operator(<<) Argument n is called the fieldwidth specification, and determines the number of character positions in which to display a right-justified number or string(not char data); the number of positions used is expanded if n is too narrow “Set width” affects only the very next item displayed and is useful to align columns of output 46

47 47 What is exact output? #include // For setw()‏ #include using namespace std; int main()‏ { int myNumber = 123; int yourNumber = 5; cout << setw(10) << “Mine” << setw(10) << “Yours” << endl << setw(10) << myNumber << setw(10) << yourNumber << endl; return 0; }

48 48 Output 12345678901234567890 Mine Yours 123 5 Each is displayed right-justified and each is located in a total of 10 positions position

49 49 What is exact output? #include // For setw() and setprecision()‏ #include using namespace std; int main()‏ { float myNumber = 123.4; float yourNumber = 3.14159; cout << fixed << showpoint; // Use decimal format; print decimal points cout << “Numbers are: ” << setprecision(4)‏ << endl << setw(10) << myNumber << endl << setw(10) << yourNumber << endl; return 0; }

50 50 OUTPUT Numbers are: 123.4000 3.1416 Each is displayed right-justified and rounded if necessary and each is located in a total of 10 positions with 4 places after the decimal point 12345678901234567890

51 51 float x = 312.0; float y = 4.827; cout << fixed << showpoint; OUTPUT cout << setprecision(2) << setw(10) << x << endl ’’’’  3  1  2.00 << setw(10) << y << endl; ’’’’’’  4.83 cout << setprecision(1) << setw(10) << x << endl ’’’’’  3  1  2.0 << setw(10) << y << endl; ’’’’’’’  4.8 cout << setprecision(5) << setw(7) << x << endl 3  1  2.00000 << setw(7) << y << endl;  4.82700 More Examples x 312.0 y 4.827

52 setfill Used to fill the unused columns with a character other than a space when used with the setw manipulator. cout << setfill(‘*’); cout << setw(5) << 15 << setw(7) << 7634 << setw(8) << “Warm” << endl; Output: ***15***7634****Warm 52

53 Left and right maniulators Default setting is that output is right justified when using setw. To change to left, use cout << left; Output is then left justified until changed. To change back to right, use cout << right; 53

54 HEADER MANIPULATOR ARGUMENT EFFECT FILE TYPE 54 showpoint none displays decimal point fixed none suppresses scientific notation setprecision(n) int sets precision to n digits setw(n) int sets fieldwidth to n positions endl none terminates output line

55 55 Formatting Output endl manipulator moves output to the beginning of the next line setprecision(n) outputs decimal numbers with up to n decimal places fixed outputs floating-point numbers in a fixed decimal format showpoint forces output to show the decimal point and trailing zeros

56 56 Types of Manipulators Two types of manipulators: With parameters Without parameters Parameterized: require iomanip header setprecision, setw, and setfill Nonparameterized: require iostream header endl, fixed, showpoint, left, right

57 57 I/O and the string Type An input stream variable ( cin ) and extraction operator >> can read a string into a variable of the data type string Extraction operator Skips any leading whitespace characters and reading stops at a whitespace character Should not be used to read strings with blanks The function getline Reads until end of the current line Should be used to read strings with blanks getline(cin, mystring);

58 The string Type To use the data type string, the program must include the header file The statement: string name = "William Jacob"; declares name to be a string variable and also initializes name to "William Jacob" The first character, 'W', in name is in position 0; the second character, 'i', is in position 1, and so on

59 The string Type (continued)‏ The variable name is capable of storing any size string Binary operator + (to allow the string concatenation operation), and the array subscript operator [], have been defined for the data type string For example, If str1 = "Sunny", the statement stores the string "Sunny Day" into str2 : str2 = str1 + " Day";

60 length Function Length returns the number of characters currently in the string The syntax to call the length function is: strVar.length()‏ where strVar is variable of the type string length has no arguments length returns an unsigned integer The value returned can be stored in an integer variable

61

62 size Function The function size is same as the function length Both functions return the same value The syntax to call the function size is: strVar.size()‏ where strVar is variable of the type string As in the case of the function length, the function size has no arguments

63 find Function find searches a string for the first occurrence of a particular substring Returns an unsigned integer value of type string::size_type giving the result of the search The syntax to call the function find is: strVar.find(strExp)‏ where strVar is a string variable and strExp is a string expression evaluating to a string The string expression, strExp, can also be a character

64 find Function (continued)‏ If successful, find returns the position in strVar where the match begins For the search to be successful the match must be exact If unsuccessful, find returns the special value string::npos (“not a position within the string”) ‏

65

66 substr Function substr returns a particular substring of a string The syntax to call the function substr is: strVar.substr(expr1,expr2)‏ where expr1 and expr2 are expressions evaluating to unsigned integers

67 substr Function (continued)‏ The expression expr1 specifies a position within the string (starting position of the substring) ‏ The expression expr2 specifies the length of the substring to be returned

68

69 swap Function swap interchanges the contents of two string variables The syntax to use the function swap is strVar1.swap(strVar2); where strVar1 and strVar2 are string variables Suppose you have the following statements: string str1 = "Warm"; string str2 = "Cold"; After str1.swap(str2); executes, the value of str1 is "Cold" and the value of str2 is "War"

70 String summary A string is a sequence of zero or more characters Strings in C++ are enclosed in double quotation marks The function length returns the number of characters currently in the string The function size returns the number of characters currently in the string The function find searches a string to locate the first occurrence of a particular substring The function substr returns a particular substring of a string The function swap is used to swap the contents of two string variables 70


Download ppt "Numeric Types, Expressions, and Output 1. Chapter 3 Topics Constants of Type int and float Evaluating Arithmetic Expressions Implicit Type Coercion and."

Similar presentations


Ads by Google