Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _05._Supplies_for_School
- {
- class Program
- {
- static void Main(string[] args)
- {
- int pensCount = int.Parse(Console.ReadLine());
- int markersCount = int.Parse(Console.ReadLine());
- int preparationCount = int.Parse(Console.ReadLine());
- int percent = int.Parse(Console.ReadLine());
- double pensPrice = pensCount * 5.80;
- double markersPrise = markersCount * 7.20;
- double preparationPrice = preparationCount * 1.20;
- //обащата сума
- double sum = pensPrice + markersPrise + preparationPrice;
- //от общата сума - изваждаме % намаление;
- double totalSum = sum - sum * (percent / 100.0);
- //отпечатване на резултата
- Console.WriteLine(totalSum);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment