Merge pull request #136 from shikhart98/master

Add Compression Algorithm
This commit is contained in:
Christian Bender
2018-03-31 17:19:45 +02:00
committed by GitHub
9 changed files with 240 additions and 0 deletions

28
Conversions/AnytoAny.java Normal file
View File

@ -0,0 +1,28 @@
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 static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int sn = scn.nextInt();
int sb = scn.nextInt();
int db = scn.nextInt();
int m=1,dec=0,dn=0;
while(sn!=0)
{
dec=dec+ (sn%10)*m;
m*=sb;
sn/=10;
}
m=1;
while(dec!=0)
{
dn=dn+ (dec%db)*m;
m*=10;
dec/=db;
}
System.out.println(dn);
}
}