Advertisement
Spocoman

Cinema Voucher

Nov 28th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.40 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CinemaVoucher
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int voucher = int.Parse(Console.ReadLine());
  10.             int ticket = 0;
  11.             int other = 0;
  12.             while (true)
  13.             {
  14.                 string buy = Console.ReadLine();
  15.                 if (buy == "End")
  16.                 {
  17.                     break;
  18.                 }
  19.  
  20.                 int price = 0;
  21.  
  22.                 if (buy.Length > 8)
  23.                 {
  24.                     for (int i = 0; i < 2; i++)
  25.                     {
  26.                         price += buy[i];
  27.                     }
  28.                     if (voucher >= price)
  29.                     {
  30.                         voucher -= price;
  31.                         ticket++;
  32.                     }
  33.                     else
  34.                     {
  35.                         break;
  36.                     }
  37.                 }
  38.                 else
  39.                 {
  40.                     price = buy[0];
  41.                     if (voucher >= price)
  42.                     {
  43.                         voucher -= price;
  44.                         other++;
  45.                     }
  46.                     else
  47.                     {
  48.                         break;
  49.                     }
  50.                 }
  51.             }
  52.             Console.WriteLine(ticket);
  53.             Console.WriteLine(other);
  54.         }
  55.     }
  56. }
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement