quinta-feira, 30 de março de 2017

Aula-30.03 turma 3

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)
  {
    int cont = 1;
    while (cont <= 50){
    int binario = 0;
    int resto = 0;
    int pot = 1;
    int decimal = cont;
      while (decimal > 0) {
      resto = decimal%2;
      decimal = decimal/2;
    //binario = resto + binario;
      binario = resto * pot + binario;  
      pot = pot * 10;
     }  
      cont++;
System.out.println(binario); 
    }
   
  }

}

Nenhum comentário:

Postar um comentário