4. Vacation Book List
Ivan Ivanov
Posted on January 20, 2023
using System;
namespace VacationBooksList
{
internal class Program
{
static void Main(string[] args)
{
int pageNum = int.Parse(Console.ReadLine());
int page = int.Parse(Console.ReadLine());
int countDays = int.Parse(Console.ReadLine());
int totalReadingHour = pageNum / page;
int neededHours = totalReadingHour / countDays;
Console.WriteLine(neededHours);
}
}
}
💖 💪 🙅 🚩
Ivan Ivanov
Posted on January 20, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.