Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Съобщение от viki_katsarska@abv.bg
- ViktoriaKatsarska,9bklas,nomer8
- 1 задача
- излишна праверка: if (cena1hotel > max)
- ТРЯБВА max=cena1hotel...max=cena2hotel
- 7т
- 2 задача
- Не е пресметната цената за облекло на всички статисти
- Резултатът трябва да е форматиран до втория знак след десетичната запетая.
- Общо 12т
- Оценка: Мн. добър 5.04 2+19*0,16=5,04
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace _9bizpitvane_8nomer
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- //double cena1hotel = double.Parse(Console.ReadLine());
- //double cena2hotel = double.Parse(Console.ReadLine());
- //double cena3hotel = double.Parse(Console.ReadLine());
- //double max = cena1hotel;
- //if (cena1hotel > max)
- //{
- // cena1hotel= max;
- //}
- //if (cena2hotel > max)
- //{
- // cena2hotel = max;
- //}
- //if (cena3hotel > max)
- //{
- // max = cena3hotel;
- //}
- //Console.WriteLine($"Petur shte plati{max * 3:f2}");
- //zad2
- //double budget = double.Parse(Console.ReadLine());
- //int statisti = int.Parse(Console.ReadLine());
- //double obleklo = double.Parse(Console.ReadLine());
- //double dekor = 0.10 * budget;
- //if (statisti > 150)
- //{
- // obleklo = obleklo - 0.10 * obleklo;
- //}
- //if (dekor + obleklo > budget)
- //{
- // Console.WriteLine("Parite nqma da stignat");
- // Console.WriteLine($"Shte sa vi neobhodimi {(statisti + obleklo + dekor) - budget}");
- //}
- //if (dekor + obleklo <= budget)
- //{
- // Console.WriteLine("Strahotno");
- // Console.WriteLine($"Filma shte bude zasnet i shte vi ostanat {budget - (statisti + obleklo + dekor)}");
- //}
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement