Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Problem_2_GravitationOnTheMoon
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Enter the weigh on the Earth: ");
- double w = double.Parse(Console.ReadLine());
- Console.Write("The weigh of a man on the Moon is: {0}", w*0.17);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement