Announcements & review

Slides:



Advertisements
Similar presentations
Introduction to Java 2 Programming Lecture 5 Array and Collections.
Advertisements

Solving Inequalities. C + 3 < 12 Guess a reasonable solution and write your guess.
Discussion 7. Make up tutorial Official make up slot: Friday 27 Oct (4-6) (by majority of the people that send me the ) For those who cannot make.
Choosing a Dental Plan Student Name
HF NOISE FILTERS PERFORMANCE
10. predavanje Novac i financijski sustav
Advisor: Chiuyuan Chen Student: Shao-Chun Lin
Ch48 Statistics by Chtan FYHSKulai
Waves and Sound Physics Unit 7 Physics Unit 7.
Gravitation and Cosmology I Introduction to Cosmology
Parallel Computing with MATLAB® How to Use Parallel Computing Toolbox™ and MATLAB® Distributed Computing Server™ on Discovery Cluster, An EECE5640: High.
Characterization of Circuit Components Using S-Parameters
The Rescorla-Wagner Learning Model (and one of its descendants)
The variable gamma-ray sky
Thesis supervisor: Christelle Bruni (LAL)
Semiconductors and Light
(1.7) Modeling Heterogeneity; Interpreting evidence (Part II)
Biomechanics of Vertical Jump
The Nature of Matter and Radioactivity
ANTENNA FACTOR CALIBRATION TECHNIQUES
Naval Center for Cost Analysis (NCCA) Jake Mender and Ann Hawpe
A Visualization Tool Measuring the Performance of Biomarkers for Guiding Treatment Decisions Hui Yang (Amgen Inc), Rui Tang (Vertex Pharmaceuticals), Michael.
Recognition IV: Object Detection through Deep Learning and R-CNNs
Basic concepts of consolidation
The Economics and Computer Science of a Radio Spectrum Reallocation
TEACHING STATISTICS Using the EL-W535HT.
Math 10 online work that was due today at the start of class:
STATISTICS REVIEW Copyright © 2016 STC, UK
UNO Subcontractor Conference
Transfer Learning.
Forecasting Punjab Revenue and Expenditure
Natural Language Understanding with Common Sense Reasoning
Improving WASH for urban settings under stress of migrants
Audience Analysis.
Annapolis High Concussion Protocol
Estimation of ice basal reflectivity
Insular Nordic SAS1. April 22nd, 2016.
Influences & Risks in the Developmental Process
Strategy, Organization Design, and Structure
Chapter 5: Biotechnology
Nutrition Objective: Analyze the function of nutrients
Order and Change MP.
Story Elements English I.
Presentation to Leadership Detroit November 17th, 2016
Royal Society of Biology The Nancy Rothwell Award
Workshop on Multiphysics Model Validation
Lecture 2 Multiple Prices, Econometrics & Modeling Demand Curves
Presentation on GSM Network
Day 27 Test Tomorrow!!!!!!!!!!! Taxation.
Understanding Faster-SQL with Indexes
By Pastor George Lehman
A Case of Memory Loss and Poor Balance
Design of form 12th Meeting.
Application 2 Detect Filarial Worms
Increasing Tobacco Excise Tax
Electronic Submission of W-2s & 1099s
pTask: A Smart Prefetching Scheme for OS Intensive Applications
Estate Planning Issues for 2012
Alabama College of Osteopathic Medicine Student Ambassador Program
The Authority of the Bible
Catapult Python Programming Session 4
Lecture 5 of Computer Science II
Lecture 8: 2D Arrays and Nested Loops
Two-Dimensional Arrays
Arrays 1. One dimensional arrays - Review 2. Using arrays
multi-dimensional arrays
Announcements & Review
DIVIDING FRACTIONS TIC-TAC-TOE
Exercise 1 Declare a constant of type int called SIZE and initialize it to value 10 Declare two int arrays of size “SIZE” Assume that those int arrays.
Tic-Tac-Toe Game Engine
Presentation transcript:

Announcements & review Last Time Manipulating 2D arrays of base types int[][] board = new int[3][3] Today More on 2D arrays Finish TicTacToe No Announcements!? Lecture 22: 2 Dimensional Arrays

Lecture 22: 2 Dimensional Arrays Array declarations int[][] blob; int[][] blob2 = new int[3][5]; int[][] blob3 = new int[4]; for (i=1;i<=blob3.length; i++) { blob3[i-1] = new int[i]; } blob -> null blob2 -> after declaration blob3 -> after loop blob3 -> -> null -> null -> null -> null Lecture 22: 2 Dimensional Arrays

Lecture 22: 2 Dimensional Arrays Java Examples in BlueJ Let’s continue with our tic-tac-toe program Lecture 22: 2 Dimensional Arrays