COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Similar documents
Building Java Programs

Building Java Programs

Building Java Programs Chapter 6

Building Java Programs

Building Java Programs

Building Java Programs

Building Java Programs

Building Java Programs

Building Java Programs

Building Java Programs

Building Java Programs

Files. Reading data from files. File class. Compiler error with files. Checked exceptions. Exceptions. Readings:

Building Java Programs

Building Java Programs

Building Java Programs

File class in Java. Scanner reminder. File methods 10/28/14. File Input and Output (Savitch, Chapter 10)

File Processing. Computer Science S-111 Harvard University David G. Sullivan, Ph.D. A Class for Representing a File

Reading Input from Text File

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

CSE 142, Spring Chapters 6 and 7 Line-Based File Input, Arrays. reading: , 7.1

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Building Java Programs

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Building Java Programs

CIS 110: Introduction to Computer Programming

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Building Java Programs

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Topic 11 Scanner object, conditional execution

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 19: NOV. 15TH INSTRUCTOR: JIAYIN WANG

! definite loop: A loop that executes a known number of times. " The for loops we have seen so far are definite loops. ! We often use language like

COMP102: 181. Menu. More while loops. Admin: Test. Peter Andreae

AP Computer Science. Return values, Math, and double. Copyright 2010 by Pearson Education

Loops. Eng. Mohammed Abdualal. Islamic University of Gaza. Faculty of Engineering. Computer Engineering Department

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Garfield AP CS. User Input, If/Else. Most slides from Building Java Programs. Thanks, Stuart Regesand Marty Stepp!

Object Oriented Programming. Java-Lecture 1

Building Java Programs

CSCI 1103: File I/O, Scanner, PrintWriter

Building Java Programs

1. An operation in which an overall value is computed incrementally, often using a loop.

CSCI 1103: File I/O, Scanner, PrintWriter

CSE 1223: Introduction to Computer Programming in Java Chapter 7 File I/O

AP Computer Science. File Input with Scanner. Copyright 2010 by Pearson Education

Topic 11 Scanner object, conditional execution

Unit 10: exception handling and file I/O

JAVA PROGRAMMING LAB. ABSTRACT In this Lab you will learn to write programs for executing statements repeatedly using a while, do while and for loop

CS244 Advanced Programming Applications

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

File I/O Array Basics For-each loop

Computational Expression

CS 112 Introduction to Programming

Computer Programming, I. Laboratory Manual. Experiment #6. Loops

A+ Computer Science -

A token is a sequence of characters not including any whitespace.

NoSuchElementException 5. Name of the Exception that occurs when you try to read past the end of the input data in a file.

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

Constants. Why Use Constants? main Method Arguments. CS256 Computer Science I Kevin Sahr, PhD. Lecture 25: Miscellaneous

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

CS 112 Introduction to Programming

Computer Science is...

Fundamentals of Programming Data Types & Methods

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Full file at

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

CS 211: Existing Classes in the Java Library

Computer Programming, I. Laboratory Manual. Experiment #5. Strings & Text Files Input

Building Java Programs

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

EXCEPTIONS. Fundamentals of Computer Science I

First Java Program - Output to the Screen

COMP102: Test 2 Model Solutions

Building Java Programs

COSC 123 Computer Creativity. I/O Streams and Exceptions. Dr. Ramon Lawrence University of British Columbia Okanagan

Text User Interfaces. Keyboard IO plus

Excep&ons and file I/O

Wentworth Institute of Technology. Engineering & Technology WIT COMP1000. Java Basics

COMP102: Test 1 Model Solutions

M105: Introduction to Programming with Java Midterm Examination (MTA) Makeup Spring 2013 / 2014

COMP 202 Java in one week

COMP 202 File Access. CONTENTS: I/O streams Reading and writing text files. COMP 202 File Access 1

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

COMP 202. Built in Libraries and objects. CONTENTS: Introduction to objects Introduction to some basic Java libraries string

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Wentworth Institute of Technology. Engineering & Technology WIT COMP1000. File Input and Output

Building Java Programs

CS 112 Introduction to Programming

Lecture 8 " INPUT " Instructor: Craig Duckett

Chapter 2: Basic Elements of Java

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

I/O Streams. COMP 202 File Access. Standard I/O. I/O Stream Categories

COMP 202 File Access. CONTENTS: I/O streams Reading and writing text files. COMP File Access 1

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

Dining philosophers (cont)

Using APIs. Chapter 3. Outline Fields Overall Layout. Java By Abstraction Chapter 3. Field Summary static double PI

CS 112 Introduction to Programming

CS 112 Introduction to Programming

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

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Transcription:

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

COSC 236 Web Site You will always find the course material at: http://www.class-notes.us or http://www.class-notes.info or http://www.lecture-notes.tripod.com From this site you can click on the COSC-236 tab to download the PowerPoint lectures, the Quiz solutions and the Laboratory assignments. 2

3

Review of Quiz 16 You were given the main program and were asked to write the two Boolean methods isprime() and hasanevendigit() The method isprime() was already written for you although you were asked to improve it The method hasanevendigit() can be obtained by making modifications to hasanodddigit() 4

Review of Quiz 16 There are two issues addressed in Quiz 16: Modifying the ifprime() method to make it more efficient Instead of the for loop going from 1 to n, it could go from 2 to n-1. The return would then be changed to return factors == 0; The loop could run from 2 to n-1, but as soon as you found an integer that divided into n, you would return a false so that it would not continue checking. The most efficient is to change the loop to run from 2 to Math.sqrt(n) and to return a false as soon as you find an integer that divided into n Modifying hasanodddigit() to check for even digits. Change the statement if (n % 2!= 0) to if (n % 2 == 0) 5

Review of Quiz 16 public static boolean isprime(int n) { n = Math.abs(n); // take care of negative numbers for (int i = 2; i*i <= n; i++) { if (n % i == 0) { return false; Could also be: i <= Math.sqrt(n) 6

Review of Quiz 16 public static boolean hasanevendigit(int n) { n = Math.abs(n); // take care of negative numbers while (n > 0) { if (n % 2 == 0) { // check whether last digit is even return true; n = n / 10; return false; 7

6.3 Line-based Processing (pp. 405 411) Method nextline() Description returns next entire line of input (from cursor to \n) hasnextline() returns true if there are any more lines of input to read (always true for console input) Scanner input = new Scanner(new File("file name")); while (input.hasnextline()) { String line = input.nextline(); process this line; 8

6.3 Line-based Processing (pp. 405 411) Consuming lines of input 23 3.14 John Smith "Hello" world 45.2 19 The Scanner reads the lines as follows: 23\t3.14 John Smith\t"Hello" world\n\t\t45.2 19\n ^ String line = input.nextline(); 23\t3.14 John Smith\t"Hello" world\n\t\t45.2 19\n ^ String line2 = input.nextline(); 23\t3.14 John Smith\t"Hello" world\n\t\t45.2 19\n^ Each \n character is consumed but not returned. 9

6.3 Line-based Processing (pp. 405 411) Scanners on Strings A Scanner can tokenize the contents of a String: Scanner name = new Scanner(String); Example: String text = "15 3.2 hello 9 27.5"; Scanner scan = new Scanner(text); int num = scan.nextint(); System.out.println(num); // 15 double num2 = scan.nextdouble(); System.out.println(num2); // 3.2 String word = scan.next(); System.out.println(word); // hello 10

6.3 Line-based Processing (pp. 405 411) Mixing lines and tokens Input file input.txt: The quick brown fox jumps over the lazy dog. Output to console: Line has 6 words Line has 3 words // Counts the words on each line of a file Scanner input = new Scanner(new File("input.txt")); while (input.hasnextline()) { String line = input.nextline(); Scanner linescan = new Scanner(line); // process the contents of this line int count = 0; while (linescan.hasnext()) { String word = linescan.next(); count++; System.out.println("Line has " + count + " words"); 11

6.3 Line-based Processing (pp. 405 411) Hours question Fix the Hours program to read the input file properly: 123 Kim 12.5 8.1 7.6 3.2 456 Eric 4.0 11.6 6.5 2.7 12 789 Stef 8.0 8.0 8.0 8.0 7.5 Recall, it should produce the following output: Kim (ID#123) worked 31.4 hours (7.85 hours/day) Eric (ID#456) worked 36.8 hours (7.36 hours/day) Stef (ID#789) worked 39.5 hours (7.9 hours/day) 12

6.3 Line-based Processing (pp. 405 411) Hours answer, corrected // Processes an employee input file and outputs each employee's hours. import java.io.*; // for File import java.util.*; // for Scanner public class Hours { public static void main(string[] args) throws FileNotFoundException { Scanner input = new Scanner(new File("hours.txt")); while (input.hasnextline()) { String line = input.nextline(); Scanner linescan = new Scanner(line); int id = linescan.nextint(); // e.g. 456 String name = linescan.next(); // e.g. "Eric" double sum = 0.0; int count = 0; while (linescan.hasnextdouble()) { sum = sum + linescan.nextdouble(); count++; double average = sum / count; System.out.println(name + " (ID#" + id + ") worked " + sum + " hours (" + average + " hours/day)"); 13

6.3 Line-based Processing (pp. 405 411) Hours question corrected Standard boilerplate for file and scanner input // Processes an employee input file and outputs each employee's hours. import java.io.*; // for File import java.util.*; // for Scanner public class Hours { public static void main(string[] args) throws FileNotFoundException { DO NOT FORGET the throws declaration! 14

6.3 Line-based Processing (pp. 405 411) Scanner input = new Scanner(new File("hours.txt")); while (input.hasnextline()) { String line = input.nextline(); Scanner linescan = new Scanner(line); int id = linescan.nextint(); // e.g. 123 String name = linescan.next(); // e.g. Kim" double sum = 0.0; int count = 0; and count while (linescan.hasnextdouble()) { sum = sum + linescan.nextdouble(); count++; double average = sum / count; System.out.println(name + " (ID#" + id + ") worked " + sum + " hours (" + average + " hours/day)"); Initialize sum Standard file and scanner setup Sum the hours and keep count Calculate the average and print the results 15

6.4 Advanced File Processing (pp. 411 419) File output 16

6.4 Advanced File Processing (pp. 411 419) Output to files PrintStream: An object in the java.io package that lets you print output to a destination such as a file. Any methods you have used on System.out (such as print, println) will work on a PrintStream. Syntax: PrintStream name = new PrintStream(new File("file name")); Example: PrintStream output = new PrintStream(new File("out.txt")); output.println("hello, file!"); output.println("this is a second line of output."); 17

6.4 Advanced File Processing (pp. 411 419) Output to files import java.io.*; public class Hello4 { public static void main(string[] args) throws FileNotFoundException { PrintStream output = new PrintStream(new File("hello.txt")); output.println("hello, world."); output.println(); output.println("this program produces four"); output.println("lines of output."); 18

6.4 Advanced File Processing (pp. 411 419) Details about PrintStream PrintStream name = new PrintStream(new File("file name")); If the given file does not exist, it is created. If the given file already exists, it is overwritten. The output you print appears in a file, not on the console. You will have to open the file with an editor to see it. Do not open the same file for both reading (Scanner) and writing (PrintStream) at the same time. You will overwrite your input file with an empty file (0 bytes). 19

6.4 Advanced File Processing (pp. 411 419) System.out and PrintStream The console output object, System.out, is a PrintStream. PrintStream out1 = System.out; PrintStream out2 = new PrintStream(new File("data.txt")); out1.println("hello, console!"); // goes to console out2.println("hello, file!"); // goes to file A reference to it can be stored in a PrintStream variable. Printing to that variable causes console output to appear. You can pass System.out to a method as a PrintStream. Allows a method to send output to the console or a file. 20

6.4 Advanced File Processing (pp. 411 419) PrintStream question Modify our previous Hours program to use a PrintStream to send its output to the file hours_out.txt. The program will produce no console output. But the file hours_out.txt will be created with the text: Kim (ID#123) worked 31.4 hours (7.85 hours/day) Eric (ID#456) worked 36.8 hours (7.36 hours/day) Stef (ID#789) worked 39.5 hours (7.9 hours/day) 21

6.4 Advanced File Processing (pp. 411 419) PrintStream answer // Processes an employee input file and outputs each employee's hours. import java.io.*; // for File import java.util.*; // for Scanner public class Hours2 { public static void main(string[] args) throws FileNotFoundException { Scanner input = new Scanner(new File("hours.txt")); PrintStream out = new PrintStream(new File("hours_out.txt")); while (input.hasnextline()) { String line = input.nextline(); Scanner linescan = new Scanner(line); int id = linescan.nextint(); // e.g. 456 String name = linescan.next(); // e.g. "Eric" double sum = 0.0; int count = 0; while (linescan.hasnextdouble()) { sum = sum + linescan.nextdouble(); count++; double average = sum / count; out.println(name + " (ID#" + id + ") worked " + sum + " hours (" + average + " hours/day)"); 22

6.4 Advanced File Processing (pp. 411 419) // Processes an employee input file and outputs each employee's hours. import java.io.*; // for File import java.util.*; // for Scanner public class Hours2 { public static void main(string[] args) throws FileNotFoundException { Scanner input = new Scanner(new File("hours.txt")); PrintStream out = new PrintStream(new File("hours_out.txt")); while (input.hasnextline()) { double average = sum / count; Add printstream Nothing changes in the while loop out.println(name + " (ID#" + id + ") worked " + sum + " hours (" + average + " hours/day)"); 23

6.4 Advanced File Processing (pp. 411 419) 24

6.4 Advanced File Processing (pp. 411 419) 25

6.4 Advanced File Processing (pp. 411 419) Prompting for a file name We can ask the user to tell us the file to read. The filename might have spaces; use nextline(), not next() // prompt for input file name Scanner console = new Scanner(System.in); System.out.print("Type a file name to use: "); String filename = console.nextline(); Scanner input = new Scanner(new File(filename)); Files have an exists method to test for file-not-found: File file = new File("hours.txt"); if (!file.exists()) { // try a second input file as a backup System.out.print("hours file not found!"); file = new File("hours2.txt"); 26

6.4 Advanced File Processing (pp. 411 419) Mixing tokens and lines Using nextline in conjunction with the token-based methods on the same Scanner can cause bad results. 23 3.14 Joe "Hello" world 45.2 19 You'd think you could read 23 and 3.14 with nextint and nextdouble, then read Joe "Hello" world with nextline. System.out.println(input.nextInt()); // 23 System.out.println(input.nextDouble()); // 3.14 System.out.println(input.nextLine()); // But the nextline call produces no output! Why? 27

6.4 Advanced File Processing (pp. 411 419) Mixing lines and tokens Don't read both tokens and lines from the same Scanner: 23 3.14 Joe "Hello world" 45.2 19 input.nextint() // 23 23\t3.14\nJoe\t"Hello" world\n\t\t45.2 19\n ^ input.nextdouble() // 3.14 23\t3.14\nJoe\t"Hello" world\n\t\t45.2 19\n ^ input.nextline() 23\t3.14\nJoe\t"Hello" world\n\t\t45.2 19\n ^ // "" (empty!) input.nextline() // "Joe\t\"Hello\" world" 23\t3.14\nJoe\t"Hello" world\n\t\t45.2 19\n ^ 28

6.4 Advanced File Processing (pp. 411 419) Line-and-token example Scanner console = new Scanner(System.in); System.out.print("Enter your age: "); int age = console.nextint(); System.out.print("Now enter your name: "); String name = console.nextline(); System.out.println(name + " is " + age + " years old."); Log of execution (user input underlined): Enter your age: 12 Now enter your name: Sideshow Bob is 12 years old. Why? Overall input: After nextint(): After nextline(): 12\nSideshow Bob 12\nSideshow Bob ^ 12\nSideshow Bob ^ 29

Assignments for this week 1. Laboratory for Chapter 6 due NEXT MONDAY (Monday 11/3) IMPORTANT: When you email me your laboratory Word Document, be sure it is all in one file 2. Read pp. 439-460 (Chapter 7) for Monday 11/3 3. Be sure to complete Quiz 17 before leaving class tonight This is another program to write You must demonstrate the program to me before you leave lab 30