Recent content by Udeme107

  1. U

    here is what i have written so far for your clarification that it not an assignment. Its only a problem in a java ebook.

    but sir if i try running the program, it tells me that height and weigth is already defined in main(String[]) and i don't if a functions (including main( )) can be used to execute the program and pls can u just correct the lines for me?
  2. U

    here is what i have written so far for your clarification that it not an assignment. Its only a problem in a java ebook.

    public class Students { String first; String last; int age; String complexion; int height; int weight; double bmi; Students(String first, String last, int age, String complexion, int height, int weight, double bmi) {...
  3. U

    Write a program that will receive the first name ,last name,age,complexion (fair/dark),weight (kg)and height (m2) of 5 individ

    Java programming Write a program that will receive the first name ,last name,age,complexion (fair/dark),weight (kg)and height (m2) of 5 individuals; calculate their body mass index(BMI) and display each name and their respective information (including the BMI) accordingly...