quinta-feira, 6 de abril de 2017

Código turma 3 06.04.2017

import java.lang.Math; // headers MUST be above the first class

// one class needs to have a main() method
public class HelloWorld
{
  static int chamaInteiro (int i, int[] array){
    i=12;
    array[0] = 17;
    System.out.println(array[0]);
    return i;
    
  }
  
  // arguments are passed using the text field below this editor
  public static void main(String[] args)
  {
    int i=6;
    int [] array = new int[47];
    int[] nome  = {-1, -5, -9, 1,3,5, 13, 17, 19};
    
    int menorIndice=0;
    int menorValor=nome[menorIndice];
    
    for (int posicao = 1; posicao < nome.length; posicao++){
      
     System.out.println (nome[posicao]);      
      if (menorValor>nome[posicao]) {
        // achou um ainda menor
        menorIndice=posicao;
        menorValor=nome[menorIndice];
      }
    }
    System.out.println (nome);
 System.out.println ("["+menorIndice+"]=" +menorValor);
    
    System.out.println(HelloWorld.chamaInteiro(i,nome));
    System.out.println (i);
    System.out.println(nome[0]);
  }
}

Nenhum comentário:

Postar um comentário