How Do You Write A Conversion Program That Will Convert A Value In Kilograms To Pounds, Celsius To Fahrenheit?
We cannot help you program if we don’t know what programming language you’re coding in. Additionally, would it be a command line or GUI program? You would at least want: 1) User dialog to select conversion type (Kilogram to Pound/Celsius to Fahrenheit). This assumes you’re developing one program, not two programs (one for each type of conversion). 2) User input for user to input kilogram or Celsius value to be converted. 3) Formulas to convert Kilogram to Pound/Celsius to Fahrenheit. 4) Print result. Additionally, you may want to program a final user prompt to determine whether the user would like to repeat the process with different values. In this case, you would also need to program a loop.