Что такое findslide.org?

FindSlide.org - это сайт презентаций, докладов, шаблонов в формате PowerPoint.


Для правообладателей

Обратная связь

Email: Нажмите что бы посмотреть 

Яндекс.Метрика

Презентация на тему Arrays Loops. Java Core

AgendaArraysWhile For Break, continueSearch item in the arraySortingPractical tasks
Arrays LoopsJava CoreIT Academy04/2016 AgendaArraysWhile For Break, continueSearch item in the arraySortingPractical tasks An array is a container object that holds a fixed number of values of int month_days[ ] = {31, 28, 31, 30, 31, 30, 				31, 31, char twod1[ ][ ]= new char[3][4];char[ ][ ] twod2= new char[3][4];double m[ whileA while loop statement repeatedly executes a target statement as long as a given do whileThe difference between do-while and while is that do-while evaluates its expression at the bottom of the The for statement provides a compact way to iterate over a range of values.forWhat forfor (type variable : collection) {  statement(s);}int[] workHours = { 8, breakThe break statement terminates the for, while and do-while loop. What will continueThe continue statement skips the current iteration the for, while and do-while There’s an array int[] arr = {2, -5, 7, -4, 8};What will Minimum, maximum ...There’s an array int[] arr = {2, -5, 7, -4, SortingThere’s an array int[] arr = {2, -5, 7, -4, 8};What will Create an array of ten integers. Display the biggest of these numbers;the sum HomeWork (online course)UDEMY course Ask user to enter the number of month. Read the value and THE END
Слайды презентации

Слайд 2 Agenda
Arrays
While
For
Break, continue
Search item in the array
Sorting
Practical

AgendaArraysWhile For Break, continueSearch item in the arraySortingPractical tasks

tasks


Слайд 3 An array is a container object that holds a fixed

An array is a container object that holds a fixed number of values

number of values of a single type. The length

of an array is established when the array is created. After creation, its length is fixed.
String dayWeek[]= new String[7];
String[] month;
month = new String[12];
Each item in an array is called an element, and each element is accessed by its numerical index. As shown in the preceding illustration, numbering begins with 0.
dayWeek[0] = “Monday”;
month[11] = “December”;

Array


Слайд 4 int month_days[ ] = {31, 28, 31, 30,

int month_days[ ] = {31, 28, 31, 30, 31, 30, 				31,

31, 30,
31, 31, 30, 31, 30, 31} ;

int

month_days[ ] = new int[12];
month_days[0] = 31;
month_days[1] = 28;
// . . .
month_days[11] = 31;

int n = month_days.length; // n = 12
System.out.println(month); //[I@659e0bfd

Need override toString();
or use Arrays.toString(month);

Array


Слайд 5 char twod1[ ][ ]= new char[3][4];
char[ ][ ]

char twod1[ ][ ]= new char[3][4];char[ ][ ] twod2= new char[3][4];double

twod2= new char[3][4];
double m[ ][ ]= {{0, 1, 2,

3},
{4, 5, 6, 7},
{8, 9, 10, 11},
{12, 13, 14, 15}};
int twoD[ ][ ]= new int [4][ ];
twoD[0]= new int [1];
twoD[1]= new int [2];
twoD[2]= new int [3];
twoD[3]= new int [4];
int[ ][ ] irregular={{1},{2,3,4},{5},{6,7}}; // Rows not equal

Array

double m[4][4]; // Error;


Слайд 6 while
A while loop statement repeatedly executes a target statement as

whileA while loop statement repeatedly executes a target statement as long as a

long as a given condition is true.
while

(condition){
statements;
}

What will be displayed?
int number = 0;
while (number <= 5) {
System.out.println(number);
number++;
}


Слайд 7 do while
The difference between do-while and while is that do-while evaluates its expression at

do whileThe difference between do-while and while is that do-while evaluates its expression at the bottom of

the bottom of the loop instead of the top.

Therefore, the statements within the do block are always executed at least once

do {
statements;
} while (condition);

What will be displayed?
int i = 0;
do {
System.out.print(++i);
} while (i < 5);


Слайд 8 The for statement provides a compact way to iterate over

The for statement provides a compact way to iterate over a range of

a range of values.

for
What will be displayed?
int[] month =

{5, 6, 8, 3, 5, 7, 9};
for(int i = 0; i < month.length; i++){
System.out.println(month[i]);
}

for (init; condition ; increment) {
statement(s);
}


Слайд 9 for
for (type variable : collection) {
statement(s);
}
int[]

forfor (type variable : collection) { statement(s);}int[] workHours = { 8,

workHours = { 8, 6, 8, 7, 7 };
for

(int h = 0; h < workHours.length; h++) {
System.out.println(workHours[h]);
}
or
for (int h : workHours) {
System.out.println(h);
}

Another representation of statement for


Слайд 10 break
The break statement terminates the for, while and

breakThe break statement terminates the for, while and do-while loop. What

do-while loop.

What will be displayed?

Scanner sc = new

Scanner(System.in);
int n = 0;
for (int i = 0; i < 5; i++) {
System.out.println("Input number");
n = Integer.parseInt(sc.nextLine());
if (n < 0){
n = i;
break;
}
}
System.out.println(n);
sc.close();

Слайд 11 continue
The continue statement skips the current iteration
the

continueThe continue statement skips the current iteration the for, while and

for, while and do-while loop.

What will be displayed?

Scanner

sc = new Scanner(System.in);
int sum = 0;
int n;
for (int i = 0; i < 5; i++) {
System.out.println("Input number");
n = Integer.parseInt(sc.nextLine());
if (n < 0){
n = i;
continue;
}
sum += n;
}
System.out.println(sum);
sc.close();

Слайд 12 There’s an array int[] arr = {2, -5,

There’s an array int[] arr = {2, -5, 7, -4, 8};What

7, -4, 8};
What will results after running next code?
Sum,

product, amount

int product = 1;
for (int i = 0; i < 5; i++) {
if (arr[i] > 0) {product = product * arr[i];}}
System.out.println("Product = " + product);

int amount = 0;
for (int a : arr) {
if (a > 0 && a <= 7) { amount++; }
}
System.out.println("Amount = " + amount);

int sum = 0;
for (int i = 0; i < arr.length; i++) { sum += arr[i];}
System.out.println("Sum = " + sum);


Слайд 13 Minimum, maximum ...
There’s an array int[] arr =

Minimum, maximum ...There’s an array int[] arr = {2, -5, 7,

{2, -5, 7, -4, 8};
What will results after running

next code?

int max = arr[0];
int imax = 0;
int i = 0;
while (i < arr.length) {
if (arr[i] > max) {
max = arr[i];
imax = i;
}
i++;
}
System.out.print("Maximum = " + max);
System.out.println(" is in " + (imax + 1) + " place");


Слайд 14 Sorting
There’s an array int[] arr = {2, -5,

SortingThere’s an array int[] arr = {2, -5, 7, -4, 8};What

7, -4, 8};
What will results after running next code?
int

tmp;
for (int i = 0; i < arr.length - 1; i++) {
for (int j = i + 1; j < arr.length; j++) {
if (arr[i] < arr[j]) {
tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
}
}
}
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}

Слайд 15 Create an array of ten integers. Display 
the biggest

Create an array of ten integers. Display the biggest of these numbers;the

of these numbers;
the sum of positive numbers in the

array;
the amount of negative numbers in the array.
    What values there are more: negative or positive?
Create a class Employee with fields name, department number, salary. Create five objects of class Employee. Display
all employees of a certain department (enter department number in the console);
arrange workers by the field salary in descending order.


Practical tasks


Слайд 16 HomeWork (online course)
UDEMY course "Java Tutorial for Complete

HomeWork (online course)UDEMY course

Beginners": https://www.udemy.com/java-tutorial/
Complete lessons 8, 9, 12, 14 - 16:


Слайд 17 Ask user to enter the number of month.

Ask user to enter the number of month. Read the value

Read the value and write the amount of days

in this month (create array with amount days of each month).
Enter 10 integer numbers. Calculate the sum of first 5 elements if they are positive or product of last 5 element in the other case.
Enter 5 integer numbers. Find
position of second positive number;
minimum and its position in the array.
Organize entering integers until the first negative number. Count the product of all entered even numbers.
Create class Car with fields type, year of production and engine capacity. Create and initialize four instances of class Car. Display cars
certain model year (enter year in the console);
ordered by the field year.

Homework


  • Имя файла: arrays-loops-java-core.pptx
  • Количество просмотров: 103
  • Количество скачиваний: 0