Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace firstLesson
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int totalPages = int.Parse(Console.ReadLine());
- int pagesPerHour = int.Parse(Console.ReadLine());
- int readingDays = int.Parse(Console.ReadLine());
- int hoursForTheBook = totalPages / pagesPerHour;
- int hoursReadingPeDay = hoursForTheBook / readingDays;
- Console.WriteLine(hoursReadingPeDay);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement