There are 10 errors or omissions in the source code below. Please find and correct it.
For example, if the user weighs 61.5 kilograms and is 1.64 metres in height, the output
should look as follows:
Enter your weight in Kilograms: 61.5
Enter your height in Metres: 1.64
Your BMI is: 23
// program to calculate Body Mass Index (BMI)
public class CalculateBMI {
public start() {
System.out.println("Enter your weight in Kilograms: ");
int weight = Double.parseDouble(Keyboard.readInput())…
System.out.print(Enter your height in Metres: ");
double height = Integer.parseInt(Keyboard.readInput);
double bodyMassIndex = weight / height * height);
System.out.print("Your BMI is: ")
System.out.println(Math.round(BodyMass…
}