Advertisement
mess0011

ue2_3

Oct 1st, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. namespace ConsoleApplication7
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             double w, h, bmi; // Weight, Height and BMI
  8.            
  9.             Console.WriteLine("Please enter your weight in kg!");   //Weight
  10.             w = Double.Parse(Console.ReadLine());
  11.  
  12.             Console.WriteLine("Please enter your height in meters!");   //Height
  13.             h = Double.Parse(Console.ReadLine());
  14.  
  15.             bmi =  w /( h * h);
  16.  
  17.             Console.WriteLine("Your BMI is:{0}", bmi );   //BMI
  18.             Console.ReadLine();
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement