import java.util.Scanner; class Main { public static void bintoDec() { System.out.println("enter a number to convert binary to decimal "); Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int ans=0; int p=1; ...