Advertisement
nikitta_e

Виктория Кацарска

Dec 17th, 2024
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Съобщение от viki_katsarska@abv.bg
  2.  
  3. ViktoriaKatsarska,9bklas,nomer8
  4. 1 задача
  5. излишна праверка: if (cena1hotel > max)
  6. ТРЯБВА max=cena1hotel...max=cena2hotel
  7. 2 задача
  8. Не е пресметната цената за облекло на всички статисти
  9. Резултатът трябва да е форматиран до втория знак след десетичната запетая.
  10. Общо 12т
  11.  
  12. Оценка: Мн. добър 5.04  2+19*0,16=5,04
  13.  
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. using System.Threading.Tasks;
  19.  
  20. namespace _9bizpitvane_8nomer
  21. {
  22. internal class Program
  23. {
  24. static void Main(string[] args)
  25. {
  26. //double cena1hotel = double.Parse(Console.ReadLine());
  27. //double cena2hotel = double.Parse(Console.ReadLine());
  28. //double cena3hotel = double.Parse(Console.ReadLine());
  29. //double max = cena1hotel;
  30. //if (cena1hotel > max)
  31. //{
  32. // cena1hotel= max;
  33. //}
  34. //if (cena2hotel > max)
  35. //{
  36. // cena2hotel = max;
  37. //}
  38. //if (cena3hotel > max)
  39. //{
  40. // max = cena3hotel;
  41. //}
  42. //Console.WriteLine($"Petur shte plati{max * 3:f2}");
  43.  
  44.  
  45.  
  46. //zad2
  47. //double budget = double.Parse(Console.ReadLine());
  48. //int statisti = int.Parse(Console.ReadLine());
  49. //double obleklo = double.Parse(Console.ReadLine());
  50. //double dekor = 0.10 * budget;
  51. //if (statisti > 150)
  52. //{
  53. // obleklo = obleklo - 0.10 * obleklo;
  54. //}
  55. //if (dekor + obleklo > budget)
  56. //{
  57. // Console.WriteLine("Parite nqma da stignat");
  58. // Console.WriteLine($"Shte sa vi neobhodimi {(statisti + obleklo + dekor) - budget}");
  59. //}
  60. //if (dekor + obleklo <= budget)
  61. //{
  62. // Console.WriteLine("Strahotno");
  63. // Console.WriteLine($"Filma shte bude zasnet i shte vi ostanat {budget - (statisti + obleklo + dekor)}");
  64. //}
  65. }
  66. }
  67. }
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement