Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public static void Main(string[] args)
  2. {
  3. float kid01,kid02;
  4. Console.WriteLine("Enter Kid Height");
  5. kid01 = float.Parse(Console.ReadLine());
  6. Console.WriteLine("Enter The Other Kid Height");
  7. kid02 = float.Parse(Console.ReadLine());
  8. Console.WriteLine(Math.Abs(kid01 - kid02));
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement