Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Съобщение от stanoev078@gmail.com
- 1задача
- Типа на променливите трябва да е int
- Липсва извеждане на резултата
- Общо: 8т
- 2 задача
- Останалото време не е закръглено до най-близкото цяло число
- общо 13т
- Общо 21т Оценка Мн.добър 5.32
- Борислав_9Б_N2
- //double time = double.Parse(Console.ReadLine());
- //double cenes = double.Parse(Console.ReadLine());
- //double timeCenes = double.Parse(Console.ReadLine());
- //double preperationCenes = time * 0.15;
- //double timeForPhotos = timeCenes * cenes;
- //if (time > (preperationCenes + timeForPhotos))
- //{
- // Console.WriteLine($"You managed to finish the movie on time! You have {time - (preperationCenes + timeForPhotos)} minutes left!");
- //}
- //else
- //{
- // Console.WriteLine($"Time is up! To complete the movie you need {(preperationCenes + timeForPhotos) - time} minutes!");
- //}
- double number = double.Parse(Console.ReadLine());
- double a = number % 10;
- double b = (number % 100) / 10;
- double c = (number % 1000) / 100;
- ;
- if (a > b)
- {
- int x = a;
- a = b;
- b = x;
- }
- if (a > c)
- {
- int x = a;
- a = c;
- c = x;
- }
- if (b > c)
- {
- int x = b;
- b = c;
- c = x;
- }
- Console.WriteLine( );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement