Advertisement
Spocoman

07. Water Overflow

Jan 18th, 2022
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace WaterOverflow
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             int fillTank = 0;
  11.  
  12.             for (int i = 0; i < n; i++)
  13.             {
  14.                 int liters = int.Parse(Console.ReadLine());
  15.                 if (fillTank + liters <= 255)
  16.                 {
  17.                     fillTank += liters;
  18.                 }
  19.                 else
  20.                 {
  21.                     Console.WriteLine("Insufficient capacity!");
  22.                 }
  23.             }
  24.             Console.WriteLine(fillTank);
  25.         }
  26.     }
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement