Respuesta :

 In java complete a program that takes a weight in kilograms as input, converts the weight to pounds, and then outputs the weight in pounds. 1 kilogram = 2.204 pounds (lbs) by import java.util.

How do you change kilograms to kilos in Java?

The public static void main(String [ ] args) the burden in pound: "); pound = in. nextInt(); kilo = pound * 0.453592; gram = pound * 453.59237; System.

  1. import java.util.Scanner
  2. ;
  3. public elegance pound_KG the burden in pound
  4. : "); pound = in.nextInt(); kilo = pound
  5. * 0.453592; gram = pound * 453.59237;
  6. System.out.println("weight in kilos = " + kilo); System.out.println("weight in grams = " + gram);
  7. }

Read more about java:

https://brainly.com/question/25458754

#SPJ1