Merge pull request #400 from khalil2535/master

Thanks for the changes! I maintain this repository only recently.
This commit is contained in:
Christian Bender
2018-04-02 15:06:46 +02:00
committed by GitHub

View File

@ -1,7 +1,10 @@
package Java.Conversions;
import java.util.Scanner;
//given a source number , source base, destination base, this code can give you the destination number.
//sn ,sb,db ---> ()dn . this is what we have to do .
public class anytoany {
public class AnytoAny {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
@ -9,15 +12,13 @@ public class anytoany {
int sb = scn.nextInt();
int db = scn.nextInt();
int m = 1, dec = 0, dn = 0;
while(sn!=0)
{
while (sn != 0) {
dec = dec + (sn % 10) * m;
m *= sb;
sn /= 10;
}
m = 1;
while(dec!=0)
{
while (dec != 0) {
dn = dn + (dec % db) * m;
m *= 10;
dec /= db;