I want java to ask the user entail he get both weight or height above 0
                    System.out.print("\tEnter your weight in Kilogram: ");
                    double weight = in.nextDouble();
                    System.out.print("\tEnter your height in Centimeter: ");
                    double height = in.nextDouble();
                    if (weight <= 0 || height <= 0) {
                        while (true) {
    System.out.println("Wrong entry for weight or height... try again");
                        }
                    }
                    String clinic = "NUTRITION";
I couldn't do it without causing an infinite loop
this how i want my output:
    System.out.println("Enter the name (first and last): Omar\n"
            + "Enter your national ID number: 9821444\n"
            + "Enter your age: 30\n"
            + "Enter your mobile number (###-###-####): 055-098-1122\n"
            + "Enter your weight in Kilogram: 0\n"
            + "Enter your height in Centimeter: 176\n"
            + "Wrong entry for weight or height... try again\n"
            + "Enter your weight in Kilogram: 77\n"
            + "Enter your height in Centimeter: 0\n"
            + "Wrong entry for weight or height... try again\n"
            + "Enter your weight in Kilogram: 77\n"
            + "Enter your height in Centimeter: -176\n"
            + "Wrong entry for weight or height... try again\n"
            + "Enter your weight in Kilogram: 77\n"
            + "Enter your height in Centimeter: 176");
 
     
     
     
    