We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58a0c76 + 2285354 commit bfa2ef5Copy full SHA for bfa2ef5
Miscellaneous/BMI_Calculator.java
@@ -0,0 +1,15 @@
1
+// BMI Calculator Program
2
+import java.util.Scanner;
3
+public class Example
4
+{
5
+ public static void main(String args[])
6
+ {
7
+ Scanner sc = new Scanner(System.in);
8
+ System.out.print("Enter Your weight in kilogram: ");
9
+ double weight = sc.nextDouble();
10
+ System.out.print("\nEnter Your height in meters: ");
11
+ double height = sc.nextDouble();
12
+ double BMI = weight / (height * height);
13
+ System.out.print("\nThe Body Mass Index (BMI) is " + BMI + " kg/m2");
14
+ }
15
+}
0 commit comments