rename AnytoAny to capital letters and adding package declaration

This commit is contained in:
khalil2535 2018-04-01 22:09:06 +03:00 committed by khalil2535
parent 9ac82a1a26
commit e6766a92d6

View File

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