sábado, 8 de abril de 2017

Código 1 turma 2 - 07.04.2017: Encontrar o menor valor contido em um array

01 import java.lang.Math; // headers MUST be above the first class
02 
03 // one class needs to have a main() method
04 public class HelloWorld
05 {
06   // arguments are passed using the text field below this editor
07   public static void main(String[] args)
08   {
09     int[] A={7337052, -130042, -3, -256};
10     System.out.println("ttt");
11     int indiceDoMenor=0;
12     int y=A[indiceDoMenor];
13     for(int x=0; x<A.length;x++){
14        System.out.print(A[x" ");
15         if(A[x]< y){
16           indiceDoMenor=x;
17           y=A[indiceDoMenor];
18         }//if
19     }//for
20     System.out.println("O menor vale "+y+ " e est� na posicao " + indiceDoMenor);
21   }//main
22 }//class
Java2html

Nenhum comentário:

Postar um comentário