What's new

HELP MGA MASTER! JAVA

skadoosh_29

Eternal Poster
Established
Joined
Jun 24, 2018
Posts
753
Reaction
427
Points
375
Age
25
1626932036642.png



1626932056447.png
 

Attachments

loop mo lang yan

loop You do not have permission to view the full content of this post. Log in or register now.

if even / odd You do not have permission to view the full content of this post. Log in or register now.

sa 2nd

loop lang din

tas gawa ka variable lowest and highest

tas sa highest

if number now is > number stored
--- set mo yung var to number now

same sa lowenst
 
Pa-test nalang din po, then paki check na din ng array.
[CODE lang="java" title="Problem 1"]public class Main {
public static void main(String[] args) {
int[] field = {2, 20, 3, 13, 15, 3, 9, 10, 1, 5, 8};
int oddCount = 0;
for(int e : field)
if(e % 2 != 0)
oddCount++;
System.out.println("Odd Numbers Count: " + oddCount);
}
}[/CODE]
 
Last edited:
[CODE lang="java" title="Problem 2"]public class Main {
public static void main(String[] args) {
int[] field = {2, 20, 3, 13, 15, 3, 9, 10, 1, 5, 8};
bubbleSort(field);
System.out.println("Max Number in Field " + field[field.length-1]);
System.out.println("Min Number in Field " + field[0]);
}

static int[] bubbleSort(int[] array){
for(int i = 0; i < array.length; i++){
for(int j = 0; j < array.length - 1; j++){
if(array[j] > array[j + 1]){
int temp = array[j];
array[j] = array[j + 1];
array[j + 1] = temp;
}
}
}
return array;
}
}[/CODE]
 

Similar threads

Back
Top