quinta-feira, 23 de março de 2017

Código da aula de 23.03 turma 2

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

// one class needs to have a main() method
public class HelloWorld
{
  // arguments are passed using the text field below this editor
  public static void main(String[] args)
  {
    System.out.println ("Iniciando");
   int n1 = 3, nt=0;
    int x = 1, x1=1;
    
    while( x<=10){
    nt =x*n1;
    System.out.println(nt);
      x++; //x+=1;
      while (x1 <= 3)
      {
        if ((nt%x1)==0){
        System.out.println ("Eh divisivel por " + x1);
        }
        else{
        System.out.println ("Nao eh divisivel por " + x1);
        }
        x1++;
    }
    x1=1;
}
}
}

Nenhum comentário:

Postar um comentário