160 likes | 165 Views
Learn about char, int, float, double data types, arithmetic expressions, declarations, type coercion, function calls, and formatting output in C++. Examples and explanations provided.
E N D
Chapter 3 The New Math
Numeric Data Types • char • 1 byte • short • 2 bytes • int • 4 bytes • long • 4 bytes
More Numeric Data Types • float • 4 bytes • double • 8 bytes • long double • 8 bytes
Declarations • Constant Examples • const float PI = 3.14159; • const float E = 2.71828; • const int MAX_SCORE = 100; • Variable Examples • int studentCount; • char grade; • float averageGrade;
Simple Arithmetic Expressions • Expressions are made up of constants, variables and operators • Examples • alpha + 2 • rate – 6.0 • 4 – alpha • rate • alpha * num
Arithmetic Operators • - Unary Minus • + Unary Plus • - Subtraction • + Addition • * Multiplication • / Division • % Modulus
Expression 3 + 6 3.4 – 6.1 2 * 3 8 / 2 8.0 / 2.0 8 / 8 8 / 9 8 / 7 8 % 8 8 % 9 8 % 7 0 % 7 5 % 2.3 Value 9 -2.7 6 4 4.0 1 0 1 0 8 1 0 error
Oh yeah, don’t forget • Increment • ++ • Decrement • --
Let’s Get Tricky • Precedence Rules • Highest: ++ -- Unary + Unary – • Middle: * / % • Lowest: + - • See Appendix B for complete list
Type Coercion and Type Casting • Type Coercion • The implicit (automatic) conversion of a value from one data type to another • Type Casting • The explicit conversion of a value from one data type to another
Examples • float someFloat = 3.4 / 2; • int someInt = 3.4 / 2; • someFloat = 3 / 4; • someInt = 3.4 / 2.2;
Casting • someFloat = double (3) / double (4); • someFloat = <static_cast>(double) 3 / <static_cast> (double) 4;
Function Calls • Example • int someInt = Cube(27); • Function Call (Function Invocation) • The mechanism that transfer control to the function • Argument List (Parameter List) • A mechanism by which functions communicate with each other
Formatting Output • setw() • Tells how many characters the next item outputted should have • fixed • Force all subsequent floating-point output to appear in decimal notation • showpoint • Force decimal points in all subsequent floating-point output; even whole numbers • setprecision() • Tells how many decimal places all subsequent floating-point output should have
String Functions • length() or size() • find() • substr()