10.2.. Učitati niz X od n članova. Ispisati najveći od njih po apsolutnoj vrijednosti.Pri ovome koristiti novu promjenljivu.

Listing programa:

package Min_max;
import java.util.Scanner;	
public class Zadatak005 {
	
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		System.out.println("Najveci clan niza po apsolutnoj vrijednosti");
        System.out.print("Ucitaj broj clanova niza ");
        int n = input.nextInt();
 
        int niz[] = new int[n];
        System.out.println("Ucitaj clanove niza:");
        for (int i = 0; i < niz.length; i++) {
            System.out.print(i + "-->");
            niz[i] = input.nextInt(); // ucitaj niz[i] - i-ti clan niza
        } 
		
		int tmax = Math.abs(niz[0]);
		for (int i=1; i < niz.length; i++)
			if (tmax < Math.abs(niz[i]))
				tmax = Math.abs(niz[i]);
		
		System.out.println("Najveci clan niza po apsolutnoj vrijednosti je " + tmax);		
     }		
}

Ispis na ekranu:

Index