Advertisement
nikitta_e

Борислав

Dec 17th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Съобщение от stanoev078@gmail.com
  2. 1задача
  3. Типа на променливите трябва да е int
  4. Липсва извеждане на резултата
  5. Общо: 8т
  6. 2 задача
  7. Останалото време не е закръглено до най-близкото цяло число
  8. общо 13т
  9. Общо 21т Оценка Мн.добър 5.32
  10.  
  11. Борислав_9Б_N2
  12. //double time = double.Parse(Console.ReadLine());
  13. //double cenes = double.Parse(Console.ReadLine());
  14. //double timeCenes = double.Parse(Console.ReadLine());
  15. //double preperationCenes = time * 0.15;
  16. //double timeForPhotos = timeCenes * cenes;
  17. //if (time > (preperationCenes + timeForPhotos))
  18. //{
  19. // Console.WriteLine($"You managed to finish the movie on time! You have {time - (preperationCenes + timeForPhotos)} minutes left!");
  20. //}
  21. //else
  22. //{
  23. // Console.WriteLine($"Time is up! To complete the movie you need {(preperationCenes + timeForPhotos) - time} minutes!");
  24. //}
  25.  
  26.  
  27. double number = double.Parse(Console.ReadLine());
  28. double a = number % 10;
  29. double b = (number % 100) / 10;
  30. double c = (number % 1000) / 100;
  31. ;
  32. if (a > b)
  33. {
  34. int x = a;
  35. a = b;
  36. b = x;
  37. }
  38. if (a > c)
  39. {
  40. int x = a;
  41. a = c;
  42. c = x;
  43. }
  44.  
  45.  
  46. if (b > c)
  47. {
  48. int x = b;
  49. b = c;
  50. c = x;
  51. }
  52. Console.WriteLine( );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement