Spocoman

Excursion Sale

Dec 11th, 2021 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ExcursionSale
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int seaCount = int.Parse(Console.ReadLine());
  10.             int mountCount = int.Parse(Console.ReadLine());
  11.             int totalSum = 0;
  12.             while (true)
  13.             {            
  14.                 string input = Console.ReadLine();
  15.                 if (input == "Stop")
  16.                 {
  17.                     break;
  18.                 }
  19.                 if (input == "sea" && seaCount != 0)
  20.                 {
  21.                     totalSum += 680;
  22.                     seaCount--;
  23.                 }
  24.                 else if (input == "mountain" && mountCount != 0)
  25.                 {
  26.                     totalSum += 499;
  27.                     mountCount--;
  28.                 }
  29.                 if (seaCount == 0 && mountCount == 0)
  30.                 {
  31.                     Console.WriteLine("Good job! Everything is sold.");
  32.                     break;
  33.                 }
  34.             }
  35.             Console.WriteLine($"Profit: { totalSum} leva.");
  36.         }
  37.     }
  38. }
  39.  
Add Comment
Please, Sign In to add comment