Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main()
- {
- Console.WriteLine("What is your weight?");
- double weightOnEarth = double.Parse(Console.ReadLine());
- double weightOnMoon = (weightOnEarth * 17) / 100.00;
- Console.WriteLine("Your weight on the Moon would be exactly " + weightOnMoon);
- }
Advertisement
Add Comment
Please, Sign In to add comment