Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.71K
1 Posted Topic
You never converted weight in pounds to kilograms' which is why the program gave the wrong answer this is how i changes it: import java.util.Scanner; public class CalculateBMI { public static void main(String[] args) { double weight; Scanner scan = new Scanner(System.in); System.out.println("Please enter your weight in pounds: "); weight …
The End.
princeandzoe