Advertisement
Uriel133

2E5

Jan 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. Console.WriteLine("Enter working hours");
  2. double h = double.Parse(Console.ReadLine());
  3. Console.WriteLine("Enter salary per hour");
  4. double s = double.Parse(Console.ReadLine());
  5. Console.WriteLine(h * s);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement