Advertisement
silvana1303

elevator

May 25th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5.  
  6. namespace exampreparation
  7. {
  8.     class exam
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             int persons = int.Parse(Console.ReadLine());
  13.             int capacity = int.Parse(Console.ReadLine());
  14.  
  15.             int courses = (int)Math.Ceiling((double)persons / capacity); // кастваме инт към метода, защото връща дабъл и кастваме дабъл към хората, защото ползваме деление
  16.  
  17.             Console.WriteLine(courses);
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement