document.querySelector('body').addEventListener("click", function() {
let divCol = document.createElement("div");
divCol.classList.add('text-white');
document.querySelector('body').appendChild(divCol);
divCol.addEventListener("change", function() {
// что-то выполнять
});
});
$(document).click(function(event) {
var langb = $('.curent-lang');
var langl = $('.list-lang');
if (!$(event.target).closest('.curent-lang').length) {
langl.slideUp('');
}
});
$('.curent-lang').click(function(event) {
event.stopPropagation();
var langl = $('.list-lang');
langl.slideToggle('');
});
print("Добро пожаловать в игру 'Угадай число'!")
# Запрашиваем начальный диапазон
lower_bound = int(input("Введите нижнюю границу диапазона: "))
upper_bound = int(input("Введите верхнюю границу диапазона: "))
# Устанавливаем начальные значения
num1 = lower_bound
num2 = upper_bound
count = 0
# Начинаем угадывать
while True:
if num1 == num2:
print("Я угадал число", num1, "с", count, "попытки")
break
N = (num1 + num2) // 2
print("Твоё число больше,меньше или равно ", N, "?")
answer = int(input("1 - больше, 2 - меньше, 3 - равно:"))
count += 1
if answer == 3:
print("Я угадал число", N, "с", count, "попытки")
break
elif answer == 1:
num1 = N + 1
elif answer == 2:
num2 = N - 1
class MyClass
{
public:
struct MyStruct {
static std::string parametr1;
static int parametr2;
static bool parametr3;
};
};
std::string MyClass::MyStruct::parametr1;
int MyClass::MyStruct::parametr2;
bool MyClass::MyStruct::parametr3;
MyClass::MyStruct::parametr1;
MyClass::MyStruct::parametr2;
MyClass::MyStruct::parametr3;
class Test(MDApp):
global text_string
def build(self):
self.theme_cls.material_style = "M3"
self.theme_cls.theme_style = "Dark"
self.screen = MDScreen(
MDBottomNavigation(
MDBottomNavigationItem(
MDLabel(text='Example',
id = "Label1")
)
)
)
return self.screen
def on_start(self):
self.ids.Label1.text = text_string
Test().run()
<div class="option-value{{ option_value.quantity == 0 ? ' option-value-disabled' : '' }}">
{{ option_value.name }}: {{ option_value.price }}
</div>
if (!$option['quantity']) {
$product_option_value_data[] = array(
'product_option_value_id' => $option['product_option_value_id'],
'option_value_id' => $option['option_value_id'],
'name' => $option['name'],
'image' => $this->model_tool_image->resize($option['image'], 50, 50),
'price' => $price,
'price_prefix' => $option['price_prefix'],
'weight' => $option['weight'],
'weight_prefix' => $option['weight_prefix'],
);
}
$product_option_value_data[] = array(
'product_option_value_id' => $option['product_option_value_id'],
'option_value_id' => $option['option_value_id'],
'name' => $option['name'],
'image' => $this->model_tool_image->resize($option['image'], 50, 50),
'price' => $price,
'price_prefix' => $option['price_prefix'],
'weight' => $option['weight'],
'weight_prefix' => $option['weight_prefix'],
);
<?php
echo "<pre>";
print_r(getallheaders());
echo "</pre>";
?>