CS 106 Introduction to Computer Science I 09 / 10 / 2007 Instructor: Michael Eckmann.

Slides:



Advertisements
Similar presentations
Introduction to Computing Concepts Note Set 7. Overview Variables Data Types Basic Arithmetic Expressions ▫ Arithmetic.
Advertisements

1 Chapter 2 Introduction to Java Applications Introduction Java application programming Display ____________________ Obtain information from the.
Primitive Data Types There are a number of common objects we encounter and are treated specially by almost any programming language These are called basic.
Data Types in Java Data is the information that a program has to work with. Data is of different types. The type of a piece of data tells Java what can.
CS 106 Introduction to Computer Science I 02 / 18 / 2008 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 09 / 13 / 2006 Instructor: Michael Eckmann.
10-Jun-15 Just Enough Java. Variables A variable is a “box” that holds data Every variable has a name Examples: name, age, address, isMarried Variables.
Introduction to Programming with Java, for Beginners Primitive Types Expressions Statements Variables Strings.
10-Jun-15 Introduction to Primitives. 2 Overview Today we will discuss: The eight primitive types, especially int and double Declaring the types of variables.
©2004 Brooks/Cole Chapter 2 Variables, Values and Operations.
Bellevue University CIS 205: Introduction to Programming Using C++ Lecture 3: Primitive Data Types.
CS 106 Introduction to Computer Science I 01 / 30 / 2008 Instructor: Michael Eckmann.
1 Chapter 4 Language Fundamentals. 2 Identifiers Program parts such as packages, classes, and class members have names, which are formally known as identifiers.
CS 106 Introduction to Computer Science I 09 / 14 / 2007 Instructor: Michael Eckmann.
Introduction to Primitives. Overview Today we will discuss: –The eight primitive types, especially int and double –Declaring the types of variables –Operations.
CMT Programming Software Applications
CS 106 Introduction to Computer Science I 02 / 12 / 2007 Instructor: Michael Eckmann.
Aalborg Media Lab 21-Jun-15 Software Design Lecture 2 “ Data and Expressions”
CS 106 Introduction to Computer Science I 10 / 04 / 2006 Instructor: Michael Eckmann.
Program Elements We can now examine the core elements of programming (as implemented in Java) We focuse on: data types variable declaration and use, constants.
Data types and variables
Fundamental Programming Structures in Java: Comments, Data Types, Variables, Assignments, Operators.
Chapter 2 Data Types, Declarations, and Displays
CS 106 Introduction to Computer Science I 09 / 18 / 2006 Instructor: Michael Eckmann.
CSci 142 Data and Expressions. 2  Topics  Strings  Primitive data types  Using variables and constants  Expressions and operator precedence  Data.
CS 106 Introduction to Computer Science I 09 / 11 / 2006 Instructor: Michael Eckmann.
String Escape Sequences
Objectives You should be able to describe: Data Types
1 Variables, Constants, and Data Types Primitive Data Types Variables, Initialization, and Assignment Constants Characters Strings Reading for this class:
Chapter 2: Basic Elements of Java J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition.
Introduction to Programming David Goldschmidt, Ph.D. Computer Science The College of Saint Rose Java Fundamentals (Comments, Variables, etc.)
CSC 1051 – Data Structures and Algorithms I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website:
Week 1 Algorithmization and Programming Languages.
CS 102 Computers In Context (Multimedia)‏ 01 / 26 / 2009 Instructor: Michael Eckmann.
Java Programming: From Problem Analysis to Program Design, 4e Chapter 2 Basic Elements of Java.
 Pearson Education, Inc. All rights reserved Introduction to Java Applications.
Programming for Beginners Martin Nelson Elizabeth FitzGerald Lecture 2: Variables & Data Types.
CHAPTER 4 GC 101 Data types. DATA TYPES  For all data, assign a name (identifier) and a data type  Data type tells compiler:  How much memory to allocate.
Copyright 2008 by Pearson Education 1 Building Java Programs Chapter 2 Lecture 2-1: Expressions and Variables reading:
CS 106 Introduction to Computer Science I 01 / 26 / 2007 Instructor: Michael Eckmann.
Chapter 2 Variables.
Chapter 2 topics Concept # on Java Subset Required for AP Exam print and println10. Testing of output is restricted to System.out.print and System.out.println.
Java Programming, Second Edition Chapter Two Using Data Within a Program.
A Simple Java Program //This program prints Welcome to Java! public class Welcome { public static void main(String[] args) { public static void main(String[]
School of Computer Science & Information Technology G6DICP - Lecture 4 Variables, data types & decision making.
Programming in Java (COP 2250) Lecture 4 Chengyong Yang Fall, 2005.
Operators and Expressions. 2 String Concatenation  The plus operator (+) is also used for arithmetic addition  The function that the + operator performs.
CSM-Java Programming-I Spring,2005 Fundamental Data Types Lesson - 2.
CHAPTER 2 PROBLEM SOLVING USING C++ 1 C++ Programming PEG200/Saidatul Rahah.
© 2007 Pearson Addison-Wesley. All rights reserved2-1 Character Strings A string of characters can be represented as a string literal by putting double.
Java Programming: From Problem Analysis to Program Design, Second Edition 1 Lecture 1 Objectives  Become familiar with the basic components of a Java.
Chapter 2: Data and Expressions. Variable Declaration In Java when you declare a variable, you must also declare the type of information it will hold.
CS 106 Introduction to Computer Science I 01 / 24 / 2007 Instructor: Michael Eckmann.
CS0007: Introduction to Computer Programming Primitive Data Types and Arithmetic Operations.
Lecture 3: More Java Basics Michael Hsu CSULA. Recall From Lecture Two  Write a basic program in Java  The process of writing, compiling, and running.
© 2004 Pearson Addison-Wesley. All rights reserved August 27, 2007 Primitive Data Types ComS 207: Programming I (in Java) Iowa State University, FALL 2007.
Chapter 2 Variables.
Java Variables and Types
Primitive Data Types August 28, 2006 ComS 207: Programming I (in Java)
Multiple variables can be created in one declaration
Primitive Data, Variables, Loops (Maybe)
Escape Sequences What if we wanted to print the quote character?
Introduction to C++ Programming
Chapter 2 Variables.
Introduction to Primitives
In this class, we will cover:
Unit 3: Variables in Java
Chapter 2 Variables.
Just Enough Java 17-May-19.
Presentation transcript:

CS 106 Introduction to Computer Science I 09 / 10 / 2007 Instructor: Michael Eckmann

Michael Eckmann - Skidmore College - CS Fall 2007 Today’s Topics Comments and/or Questions? Escape sequences String concatenation Variables & types arithmetic operators

Escape sequences A String literal can be specified between double quotes. Within a string literal the backslash character \ is special. The backslash character followed by another character is called an escape sequence. Escape sequences are handled differently than regular characters. \n is a common escape sequence to force a newline \t is a way to add a tab to a string E.g. System.out.println(“Hello\nWorld”); prints: Hello World Michael Eckmann - Skidmore College - CS Fall 2007

Escape sequences \b is the backspace character There are many others, some of which are listed in the book on page 15 Let’s say you wanted to print a sarcastic message using double quotes. If we do System.out.println(“Hamilton has a “great” lacrosse team”); there will be an error at compile time. Michael Eckmann - Skidmore College - CS Fall 2007

Escape sequences System.out.println(“Hamilton has a “great” lacrosse team”); The string will be –Hamilton has a and then the compiler will see a g and will generate an error because the second double quote (the one before great) causes the string to end. What do we do? Michael Eckmann - Skidmore College - CS Fall 2007

Escape sequences An escape sequence is provided to print a “. It is \” System.out.println(“ Hamilton has a \“great\” lacrosse team ”); The above line of code will do what we want now. Michael Eckmann - Skidmore College - CS Fall 2007

Escape sequences How might we add a backslash character to a String? Let’s say we want a String like: –C:\My Documents Will this work? –System.out.println(“C:\My Documents”); Michael Eckmann - Skidmore College - CS Fall 2007

Let’s try this problem Write an application that displays the numbers 1 to 4 on the same line, with each pair of adjacent numbers separated by one space. Write the program using the following methods: –A) Using one System.out statement –B) Using four System.out statements Now let's do the same thing but on 4 different lines. Michael Eckmann - Skidmore College - CS Fall 2007

String concatenation To concatenate two Strings together, Java provides the operator + e.g. System.out.println(“Hey “ + “now.”); prints Hey now. Michael Eckmann - Skidmore College - CS Fall 2007

String concatenation Strings can only be concatenated to other Strings, but numbers are converted to Strings by Java automatically if they are being concatentated to another String. e.g. System.out.println(“I am “ “ years old.”) Will work the same as: System.out.println(“I am “ + “21” + “ years old.”) Will work the same as: System.out.println(“I am 21 years old.”) Michael Eckmann - Skidmore College - CS Fall 2007

Variables and Type A variable is a location in memory (RAM) with the following properties. name --- given by the programmer --- try to be descriptive type --- decided by the programmer from all available types, depending on what kind of values the programmer wants to use size --- amount of memory used, this is determined by the type value --- self-explanatory –value can be stored / changed / read by a program. Michael Eckmann - Skidmore College - CS Fall 2007

Primitive Types for Variables byte, short, int, long --- these are integer types -- - they hold whole numbers like –31, 4256, 56, 2632, 755, -901, 42 char --- this is a type that holds one character like a letter, digit, *, &, or an escape sequence … boolean --- holds the values of true and false float, double --- numeric types that can hold numbers with decimal values like -5.5, 98.6, etc. see page 54 in the text Michael Eckmann - Skidmore College - CS Fall 2007

Primitive Types for Variables byte (8 bits, range: -128 to 127) short (16 bits, range: to 32767) int (32 bits, range: -2,147,483,648 to 2,147,483,647) long (64 bits, range: -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807) float (has less range and precision than double) double Michael Eckmann - Skidmore College - CS Fall 2007

Primitive Types for Variables int (-2,147,483,648 to 2,147,483,647) char (e.g. 'a', '&', '\n', '4', etc.) boolean (true or false) double above are what the text calls the four fundamental primitive types. Michael Eckmann - Skidmore College - CS Fall 2007

Variables and Type int area = 50; // This line of code not only // declares a variable but also initializes its value. name of variable is area type of variable is int size of variable is 32 bits (because an int has a size of 32 bits.) value of variable is currently 50 note the same thing can be done with 2 lines of code: int area; area = 50; Michael Eckmann - Skidmore College - CS Fall 2007

public class VariableExample { public static void main(String args[]) { int result; // declares variable with name result and type int // allocates enough memory for an int to be stored int some_number; // declares variable with name some_number and type // int and allocates enough memory for an int to be stored result = 35; // an assignment statement that stores the value 35 in the // variable result. some_number = 24; // an assignment statement that stores the value 24 // in the variable some_number. result = some_number + 5; // uses the + operator to add the value in some_number to 5 // and stores (assigns) the sum to the variable result, thereby // changing result’s value. } // end main method body } // end class VariableExample body Michael Eckmann - Skidmore College - CS Fall 2007

Types for Variables Variables can be of the primitive types as well as predefined classes provided by Java or any class that a programmer creates. For example a variable can be of type String which is a class provided by Java. We’ll see more of variables and types shortly. Michael Eckmann - Skidmore College - CS Fall 2007

Operators + when used with numeric types (e.g. int, float etc.) acts as an add, however, + when used with Strings is a concatenation operator. –example: text_string = “Hello ” + first_name; = is the assignment operator. * is multiplication, / is division, % is modulus and - is subtraction. ( ) left and right parentheses are considered operators as well. Michael Eckmann - Skidmore College - CS Fall 2007

The modulus operator % is the modulus operator int val1=16, val2 = 5, remain; remain = val1 % val2; The modulus operator returns the remainder after val1 is divided by val2. Suppose val1 = 16 and val2 = 5, remain would have the value 1 because 16/5 = 3 with a remainder of 1. Michael Eckmann - Skidmore College - CS Fall 2007

Arithmetic Operator precedence ( ) parentheses are evaluated first if parens are nested then the innermost pair is evaluated first. *, /, % multiplication, division and modulus are next --- if several of these on same level, they are evaluated left to right. +, - addition and subtraction are last --- if several of these on same level, they are evaluated left to right It’s useful to memorize this precedence list Michael Eckmann - Skidmore College - CS Fall 2007

Arithmetic Operator precedence example some_result = ( ) * 6 + ( ); the order in which operations are performed could change the computation's answer. (wrong way) suppose we did 2-10 = -8 and then 6-8 = -2 then = 8, 8*(-2) = -16 (correct way) 5+4-1=8, 2-10=-8, 8*6 = 48, 48-8 = 40 Michael Eckmann - Skidmore College - CS Fall 2007

String concatenation / integer addition Now that we know that operators which are at the same “level” get evaluated from left to right, we can figure out how and why the following line of code works as it does: System.out.println("10 plus 5 is " ); will print 10 plus 5 is 105 the first + acts like concatenation and joins the string and the 10 which gets converted to a String automatically. Then the second + acts like concatenation of the String to 5 which is converted to a String automatically. Michael Eckmann - Skidmore College - CS Fall 2007

Equality and Relational operators == is equal to operator != is not equal to operator < is less than operator > is greater than operator <= is less than or equal to operator >= is greater than or equal to operator Michael Eckmann - Skidmore College - CS Fall 2007

if / else structure So far all the code we’ve seen was executed sequentially --- every line of code in order from the first to the last within the main method. if (condition) { statement_to_do_if_condition_is_true; another_statement_to_do_if_condition_is_true; } else { statement_to_do_if_condition_is_false; another_statement_to_do_if_condition_is_false; yet_another_statement_to_do_if_condition_is_false; } Michael Eckmann - Skidmore College - CS Fall 2007

if / else structure condition is something that will evaluate to true or false (usually using relational or equality operators.) if you only want to do one statement curly braces are not required if you want to do more than one statement the curly braces are necessary also, the else portion of the if / else structure is optional Michael Eckmann - Skidmore College - CS Fall 2007

valid if / else example if (radius > 0) { area = * radius * radius; circumference = 2 * * radius; } else { System.out.println("Radius is invalid"); } Michael Eckmann - Skidmore College - CS Fall 2007

a few more valid if / else examples if (numerical_grade >= 90) System.out.println("your grade is an A!"); /* */ if (account_balance < 200) System.out.println("Acct below $200 minimum”); else System.out.println("Do not charge a service fee"); Michael Eckmann - Skidmore College - CS Fall 2007

Exercise Write an application given two integers, displays the larger number followed by the words “is larger”. If the numbers are equal, print the message “These numbers are equal.” Michael Eckmann - Skidmore College - CS Fall 2007