Advertisement
mihael03

Pet_Shop

Sep 27th, 2020
569
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Pet_Shop
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int dogs = int.Parse(Console.ReadLine());
  10.             int lastDogs = int.Parse(Console.ReadLine());
  11.  
  12.             double sum1 = dogs * 2.50;
  13.             double sum2 = lastDogs * 4;
  14.  
  15.             double totalSum = sum1 + sum2;
  16.             Console.WriteLine("{0} lv", totalSum);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement