Advertisement
Fundamentalen

GravitationOnTheMoon

Mar 14th, 2014
1,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. class GravitationOnTheMoon
  4. {
  5.     static void Main()
  6.     {
  7.         Console.Write("Enter your weight: ");
  8.         double weight = double.Parse(Console.ReadLine());
  9.  
  10.         double weightOnTheMoon = (weight * 0.17);
  11.  
  12.         Console.WriteLine(weightOnTheMoon);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement