Άσκηση Java



User Rating:  / 0
PoorBest 
Details

Άσκηση στην Java που να δέχεται έναν πίνακα 5 θέσεων και να βρίσκει το μέγιστο και τον ελάχιστο αριθμό άλλα και την θέσει τους μέσα στον πίνακα 

import java.util.Scanner;
public class Example{
public static void main (String [] args)
{
int A[]=new int [5];
int i;
int max,min;
int thesi1,thesi2;
thesi1=0;
thesi2=0;
max=A[0];
min=A[0];
Scanner in = new Scanner(System.in);
for(i=0;i<A.length;i++)
{
System.out.print("Dwse ena arithmo :");
A[i]=in.nextInt();
}
for(i=0;i<A.length;i++)
{
if(A[i]>max)
{
max=A[i];
thesi1++;
}
else if(A[i]<min)
{
min=A[i];
thesi2++;
}
}
System.out.println("O megistos arithmos einai : "+max+" kai briskete sthn thesi :"+thesi1);
System.out.println("O mikroteros arithmos einai :"+min+" kai brisketai sthn thesi :"+thesi2);
}
}

You have no rights to post comments

   

Login  

   

     

© Developerpages