terça-feira, 26 de abril de 2011

Decimal para Binario - Java

Bem eu tive uma certa dificuldade em fazer esse programa, então estou postando para todos que estão tento um pouco de trabalho para fazer, estude e seja feliz ^^

import java.io.*;
import java.util.*;
//Binario - Bruno Ribeiro
public class binario {
public static void main(String[]args)
{
int resto;
resto=0;
String resultado;
resultado="";
Scanner s = new Scanner(System.in);
System.out.println("Digite o valor decimal:");
int quociente = s.nextInt();
String strquociente = Integer.toString(quociente);
while(quociente!=0){
resto= quociente % 2;
quociente = quociente /2;
resultado= resultado + Integer.toString(resto);
}
StringBuffer sbuf = new StringBuffer(resultado);
sbuf.reverse();
System.out.println("O valor em decimal: "+strquociente+" em binario e: "+sbuf+"");
}
}
Download

Nenhum comentário:

Postar um comentário

Um Forte Abraço , Posta ai ^^

Salesforce - Aside IO - IDE

Hi all, Good morning, this morning I thought of doing something really cool to help you with Salesforce development. There is an IDE...