double float char In a method: final typename variablename = expression ;

Similar documents
int: integers, no fractional part double: floating-point numbers (double precision) 1, -4, 0 0.5, , 4.3E24, 1E-14

2/9/2012. Chapter Four: Fundamental Data Types. Chapter Goals

Chapter 4 Fundamental Data Types. Big Java by Cay Horstmann Copyright 2009 by John Wiley & Sons. All rights reserved.

Chapter 4 Fundamental Data Types. Big Java by Cay Horstmann Copyright 2009 by John Wiley & Sons. All rights reserved.

Big Java. Fifth Edition. Chapter 3 Fundamental Data Types. Cay Horstmann

Define a method vs. calling a method. Chapter Goals. Contents 1/21/13

FUNDAMENTAL DATA TYPES

Full file at

CEN 414 Java Programming

Hello World. n Variables store information. n You can think of them like boxes. n They hold values. n The value of a variable is its current contents

CSCI 2010 Principles of Computer Science. Data and Expressions 08/09/2013 CSCI

Interpreted vs Compiled. Java Compile. Classes, Objects, and Methods. Hello World 10/6/2016. Python Interpreted. Java Compiled

CHAPTER 4 MATHEMATICAL FUNCTIONS, CHARACTERS, STRINGS

Programming in Java

What did we talk about last time? Examples switch statements

Chapter 2 Primitive Data Types and Operations. Objectives

Programming with Java

Entry Point of Execution: the main Method. Elementary Programming. Learning Outcomes. Development Process

First Programs. CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington

Java Classes: Math, Integer A C S L E C T U R E 8

Chapter 2 ELEMENTARY PROGRAMMING

Chapter 2. Elementary Programming

First Programs. CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington

Data and Expressions. Outline. Data and Expressions 12/18/2010. Let's explore some other fundamental programming concepts. Chapter 2 focuses on:

CS 302: Introduction to Programming

Arithmetic and IO. 25 August 2017

Tester vs. Controller. Elementary Programming. Learning Outcomes. Compile Time vs. Run Time

Elementary Programming

Basic Computation. Chapter 2

STUDENT LESSON A7 Simple I/O

Java Reference Card. 1. Classes. 2. Methods. 3. Conditionals. 4. Operators

Important Java terminology

CSE 1223: Introduction to Computer Programming in Java Chapter 2 Java Fundamentals

Chapter 2 Elementary Programming

Chapter 2 Using Data. Instructor s Manual Table of Contents. At a Glance. Overview. Objectives. Teaching Tips. Quick Quizzes. Class Discussion Topics

MODULE 02: BASIC COMPUTATION IN JAVA

Computer Programming, I. Laboratory Manual. Experiment #2. Elementary Programming

Java Coding 3. Over & over again!

Full file at

AP Computer Science A

DATA TYPES AND EXPRESSIONS

PRIMITIVE VARIABLES. CS302 Introduction to Programming University of Wisconsin Madison Lecture 3. By Matthew Bernstein

Introduction to Computer Science and Object-Oriented Programming

First Programs. CSE 1310 Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington

Elementary Programming. CSE 114, Computer Science 1 Stony Brook University

Lecture Notes. System.out.println( Circle radius: + radius + area: + area); radius radius area area value

This chapter teaches how to manipulate numbers and character strings in. Fundamental Data Types. Chapter3

Data Conversion & Scanner Class

Program Fundamentals

Section 2: Introduction to Java. Historical note

Chapter. Let's explore some other fundamental programming concepts

ECE 122 Engineering Problem Solving with Java

Chapter 2 Elementary Programming

Lesson 5: Introduction to the Java Basics: Java Arithmetic THEORY. Arithmetic Operators

Basic Computation. Chapter 2

Lecture 6. Assignments. Java Scanner. User Input 1/29/18. Reading: 2.12, 2.13, 3.1, 3.2, 3.3, 3.4

C++ PROGRAMMING. For Industrial And Electrical Engineering Instructor: Ruba A. Salamh

CONTENTS: Compilation Data and Expressions COMP 202. More on Chapter 2

Lab 4. Java Concepts Lab 4

Using Java Classes Fall 2018 Margaret Reid-Miller

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

Chapter 02: Using Data

Introduction to Computer Science Unit 2. Notes

A variable is a name for a location in memory A variable must be declared

Entry Point of Execution: the main Method. Elementary Programming. Compile Time vs. Run Time. Learning Outcomes

Motivations 9/14/2010. Introducing Programming with an Example. Chapter 2 Elementary Programming. Objectives

Welcome to the Primitives and Expressions Lab!

COMP Primitive and Class Types. Yi Hong May 14, 2015

Oct Decision Structures cont d

Introduction to Software Development (ISD) David Weston and Igor Razgon

Input. Scanner keyboard = new Scanner(System.in); String name;

Computational Expression

Chapter 2: Using Data

Basic Programming Elements

Java Tutorial. Saarland University. Ashkan Taslimi. Tutorial 3 September 6, 2011

COMP 202 Java in one week

Lecture 6. Assignments. Summary - Variables. Summary Program Parts 1/29/18. Reading: 3.1, 3.2, 3.3, 3.4

Chapter 2: Data and Expressions

Chapter 2: Data and Expressions

AP CS Unit 3: Control Structures Notes

Lecture 2: Operations and Data Types

CMPT 125: Lecture 3 Data and Expressions

Methods CSC 121 Fall 2016 Howard Rosenthal

cis20.1 design and implementation of software applications I fall 2007 lecture # I.2 topics: introduction to java, part 1

More Things We Can Do With It! Overview. Circle Calculations. πr 2. π = More operators and expression types More statements

Java Foundations: Introduction to Program Design & Data Structures, 4e John Lewis, Peter DePasquale, Joseph Chase Test Bank: Chapter 2

Introduction To Java. Chapter 1. Origins of the Java Language. Origins of the Java Language. Objects and Methods. Origins of the Java Language

Data and Variables. Data Types Expressions. String Concatenation Variables Declaration Assignment Shorthand operators. Operators Precedence

Chapter 2: Review Exercise Solutions R2.1

Primitive Data, Variables, and Expressions; Simple Conditional Execution


Introduction to Computer Science Unit 2. Notes

Chapter 2 Part 2 Edited by JJ Shepherd, James O Reilly

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

2: Basics of Java Programming

COMP 110 Introduction to Programming. What did we discuss?

COMP 202. Java in one week

Data Types and the while Statement

4. Java Project Design, Input Methods

JAVA Programming Concepts

Transcription:

Chapter 4 Fundamental Data Types The Plan For Today Return Chapter 3 Assignment/Exam Corrections Chapter 4 4.4: Arithmetic Operations and Mathematical Functions 4.5: Calling Static Methods 4.6: Strings 4.7: Reading Input Programming Time CashRegister.java (p.113) InputTester.java (p.136) NUMBER TYPES A numeric computation overflows if the result falls outside the range for the number type int n = 1000000; System.out.println(n * n); // prints -727379968 Java: 8 primitive types, including four integer types and two floating point types Upcoming Quiz: Ch. 4 Tues. 11/18 PRIMITIVE TYPES PRIMITIVE TYPES Type Description Size Type Description Size int byte short The integer type, with range 2,147,483,648... 2,147,483,647 The type describing a single byte, with range 128... 127 The short integer type, with range 32768... 32767 long The long integer type, with range 9,223,372,036,854,775,808... 9,223,372,036,854,775,807 4 bytes 1 byte 2 bytes 8 bytes double float char boolean The double-precision floating-point type, with a range of about ±10 308 and about 15 significant decimal digits The single-precision floating-point type, with a range of about ±10 38 and about 7 significant decimal digits The character type, representing code units in the Unicode encoding scheme The type with the two truth values falseand true 8 bytes 4 bytes 2 bytes 1 byte NUMBER TYPES: FLOATING-POINT TYPES Rounding errors occur when an exact conversion between numbers is not possible double f = 4.35; System.out.println(100 * f); // prints 434.99999999999994 Java: Illegal to assign a floating-point expression to an integer variable double balance = 13.75; int dollars = balance; // Error SYNTAX 4.2: CONSTANT DEFINITION In a method: final typename variablename = expression ; In a class: accessspecifier static final typename variablename = expression; Example: final double NICKEL_VALUE = 0.05; public static final double LITERS_PER_GALLON = 3.785; Purpose: To define a constant in a method or a class 1

ASSIGNMENT, INCREMENT, AND DECREMENT Assignment is not the same as mathematical equality: items = items + 1; items++ is the same as items =items + 1 items-- subtracts 1 from items ARITHMETIC OPERATIONS / is the division operator If both arguments are integers, the result is an integer. The remainder is discarded 7.0 / 4 yields 1.75 7 / 4 yields 1 Get the remainder with % (pronounced "modulo") 7 % 4 is 3 THE MATH CLASS Math class: contains methods like sqrt and pow To compute x n, you write Math.pow(x, n) However, to compute x 2 it is significantly more efficient simply to compute x * x To take the square root of a number, use the Math.sqrt; for example, Math.sqrt(x) THE MATH CLASS In Java, can be represented as (-b + Math.sqrt(b * b - 4 * a * c)) / (2 * a) MATHEMATICAL METHODS IN JAVA (P.120) Math.sqrt(x) Math.pow(x, y) Math.exp(x) Math.log(x) Math.sin(x), Math.cos(x), Math.tan(x) Math.round(x) square root power x y e x natural log sine, cosine, tangent (xin radian) closest integer to x Math.min(x, y), Math.max(x, y) minimum, maximum 8. What is the value of 1729 / 100? Of 1729 % 100? 17 and 29 9. Why doesn't the following statement compute the average of s1, s2, and s3? double average = s1 + s2 + s3 / 3; // Error Only s3 is divided by 3. To get the correct result, use parentheses. Moreover, if s1, s2, and s3 are integers, you must divide by 3.0 to avoid integer division: (s1 + s2 + s3) / 3.0 10. What is the value of the following in mathematical notation? Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) 2

CALLING STATIC METHODS SYNTAX 4.3: STATIC METHOD CALL A static method does not operate on an object double x = 4; double root = x.sqrt(); // Error Static methods are defined inside classes Naming convention: Classes start with an uppercase letter; objects start with a lowercase letter Math System.out ClassName. methodname(parameters) Example: Math.sqrt(4) Purpose: To invoke a static method (a method that does not operate on an object) and supply its parameters 11. Why can't you call x.pow(y) to compute x y? x is a number, not an object, and you cannot invoke methods on numbers 12. Is the call System.out.println(4) a static method call? No the println method is called on the object System.out STRINGS A string is a sequence of characters Strings are objects of the String class String constants: "Hello, World!" String variables: String message = "Hello, World!"; String length: int n = message.length(); Empty string: "" CONCATENATION Use the + operator: String name = "Dave"; String message = "Hello, " + name; // message is "Hello, Dave" If one of the arguments of the + operator is a string, the other is converted to a string String a = "Agent"; int n = 7; String bond = a + n; // bond is Agent7 CONCATENATION IN PRINT STATEMENTS Useful to reduce the number of System.out.print instructions System.out.print("The total is "); System.out.println(total); versus System.out.println("The total is " + total); 3

CONVERTING BETWEEN STRINGS AND NUMBERS Convert to number: int n = Integer.parseInt(str); double x = Double.parseDouble(x); SUBSTRINGS String greeting = "Hello, World!"; String sub = greeting.substring(0, 5); // sub is "Hello" Supply start and past the end position First position is at 0 Convert to string: String str = "" + n; str = Integer.toString(n); Figure 3: String Positions SUBSTRINGS Substring length is past the end -start Figure 4: Extracting a Substring 13. Assuming the String variable s holds the value "Agent", what is the effect of the assignment s = s + s.length()? s is set to the string Agent5 14. Assuming the String variable river holds the value "Mississippi", what is the value of river.substring(1, 2)? Of river.substring(2, river.length() - 3)? The strings "i" and "ssissi" READING INPUT System.in has minimal set of features it can only read one byte at a time In Java 5.0, Scanner class was added to read keyboard input in a convenient manner Scanner in = new Scanner(System.in); System.out.print("Enter quantity: "); int quantity = in.nextint(); nextdouble reads a double nextline reads a line (until user hits Enter) nextword reads a word (until any white space) FILE INPUTTESTER.JAVA (P.136) 01: import java.util.scanner; 02: 03: /** 04: This class tests console input. 05: */ 06: public class InputTester 07: { 08: public static void main(string[] args) 09: { 10: Scanner in = new Scanner(System.in); 11: 12: CashRegister register = new CashRegister(); 13: 14: System.out.print("Enter price: "); 15: double price = in.nextdouble(); 16: register.recordpurchase(price); 17: 4

FILE INPUTTESTER.JAVA 18: System.out.print("Enter dollars: "); 19: int dollars = in.nextint(); 20: System.out.print("Enter quarters: "); 21: int quarters = in.nextint(); 22: System.out.print("Enter dimes: "); 23: int dimes = in.nextint(); 24: System.out.print("Enter nickels: "); 25: int nickels = in.nextint(); 26: System.out.print("Enter pennies: "); 27: int pennies = in.nextint(); 28: register.enterpayment(dollars, quarters, dimes, nickels, pennies); 29: 30: System.out.print("Your change is "); 31: System.out.println(register.giveChange()); 32: } 33: } FILE INPUTTESTER.JAVA Output Enter price: 7.55 Enter dollars: 10 Enter quarters: 2 Enter dimes: 1 Enter nickels: 0 Enter pennies: 0 Your change is 3.05 READING INPUT FROM A DIALOG BOX READING INPUT FROM A DIALOG BOX String input = JOptionPane.showInputDialog(prompt) Convert strings to numbers if necessary: int count = Integer.parseInt(input); Conversion throws an exception if user doesn't supply a number see chapter 15 Figure 8: An Input Dialog Box Add System.exit(0) to the main method of any program that uses JOptionPane 15. Why can't input be read directly from System.in? The class only has a method to read a single byte. It would be very tedious to form characters, strings, and numbers from those bytes. 16. Suppose in is a Scanner object that reads from System.in, and your program calls String name = in.next(); What is the value of name if the user enters John Q. Public? The value is "John". The next method reads the next word. 5