Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace DepositCalculator
- {
- class Program
- {
- static void Main()
- {
- int pages = int.Parse(Console.ReadLine());
- int pagesPerHour = int.Parse(Console.ReadLine());
- int daysToRead = int.Parse(Console.ReadLine());
- int hoursPerDay = pages / pagesPerHour / daysToRead;
- Console.WriteLine(hoursPerDay);
- }
- }
- }
Add Comment
Please, Sign In to add comment