public class challenge1Fall15 { /****************** METHOD Conversion ******************************************** * Method Conversion takes the following inputs: * • The number the user plans to convert; * • The original base (an integer); and * • The target base (an integer); * And it returns the number, given in the original base, now translated in * the target base. * Note: the base numbers can be anything between 2 and 36. *********************************************************************************/ public static String Conversion(String number, int original, int target) { String str=""; return str; } /***********************************************************************************/ /************* MAIN METHOD *********************************************************/ /************* This is where you write the name ************************************/ /************* of the code you want to execute ************************************/ public static void main(String[] args) { } }