Advertisement
Guest User

Untitled

a guest
May 4th, 2020
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. using System;
  2. namespace Pet_Shop
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. double myDog = double.Parse(Console.ReadLine());
  9. double neiDog = double.Parse(Console.ReadLine());
  10. double dogPrice = myDog * 2.50;
  11. double dogPriceNei = neiDog * 4;
  12. double total = dogPrice + dogPriceNei;
  13. Console.WriteLine($"{total :F1} lv.");
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement