quinta-feira, 30 de março de 2017

código turma 3 30.03.2017

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 = 0;
    if (args.length>0) System.out.println (args[0]+" "+args[1] + " " + args[2]);

    int lim = Integer.parseInt(args[2]);
    while (cont <= lim){
      System.out.println(binario(cont)); 
      cont++;
    }
   
  }
  public static int binario (int decimal) {
    int binario = 0;
    int resto = 0;
    int pot = 1;
    while (decimal > 0) {
      resto = decimal%2;
      decimal = decimal/2;
      //binario = resto + binario;
      binario = resto * pot + binario;  
      pot = pot * 10;
    }  
    return binario;
  }
  
}

Nenhum comentário:

Postar um comentário