Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Съобщение от evgeniasamarova@gmail.com
- Evgenia nomer 13 9b klas
- Неправилно изчисляване на времето за подготовка на терен
- при извеждането има грешка в низа и резултата не е закръглен до най-близкото цяло число
- Много добър 5
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace nomer_13
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int photosTime = int.Parse(Console.ReadLine());
- int sceneCount = int.Parse(Console.ReadLine());
- int sceneTime = int.Parse(Console.ReadLine());
- double teren = sceneTime * 0.15;
- int sceneT = sceneCount * sceneTime;
- double neededT= teren+sceneT;
- if (neededT < photosTime )
- {
- Console.WriteLine($"You managed to finish the movie on time! You have {photosTime-neededT} minutes left!");
- }
- else
- {
- Console.WriteLine($"Time is up! To complete the movie you need {neededT-photosTime} minutes.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement