Bmi calculator with java by Indranil Bhattacharjee.
Bmi calculator in java with Brithish rule & Metrix rule in java. and say overweight,Obese,under weight etc. import java . util . Scanner ; class BMICal { public static void main ( String [] args ) { float bmi , kg , m , lb , inch ; char choice , ch ; Scanner sc = new Scanner ( System . in ); System . out . print ( "weight in kg Y/N ?" ); choice = sc . next (). charAt ( 0 ); switch ( choice ) { case 'Y' : System . out . print ( "Enter weight in kg:-" ); kg = sc . nextFloat (); System . out . print ( "Enter height in inch y/n:-" ); ...