Teo_Yanchev

Elevator - C# - Fundamentals

Aug 19th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace SumDigits
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int people = int.Parse(Console.ReadLine());
  11. int capacity = int.Parse(Console.ReadLine());
  12.  
  13. int course = (int)Math.Ceiling((double)people / capacity);
  14. Console.WriteLine(course);
  15. }
  16. }
  17. }
  18.  
Add Comment
Please, Sign In to add comment