var x, y: integer;
begin
writeln('Введите x =');
read(x);
if x < -1 then
begin
y:= 2-sqr(x);
writeln('y=',y)
end
else
begin
if (x>=-1) and (x<=2) then
begin
y:= 2*x;
writeln('y=',y);
end
else
begin
if x>2 then
begin
y:= 2-x;
writeln('y=',y);
end
end
end
end.
ymaps.ready(function () {
var myMap = new ymaps.Map('map', {
center: [55.751574, 37.373856], // центр карты
zoom: 9
}, {
searchControlProvider: 'yandex#search'
}),
MyIconContentLayout = ymaps.templateLayoutFactory.createClass(
'<div style="color: #FFFFFF; font-weight: bold;">$[properties.iconContent]</div>'
),
myPlacemark = new ymaps.Placemark([55.751574, 37.573856], { //красная метка в точке, где был раньше центр
hintContent: 'Собственный значок метки',
balloonContent: 'Это красивая метка'
}, {
iconLayout: 'default#image',
iconImageHref: 'images/myIcon.gif',
iconImageSize: [30, 42],
iconImageOffset: [-5, -38]
}),
myPlacemarkWithContent = new ymaps.Placemark([55.661574, 37.573856], {
hintContent: 'Собственный значок метки с контентом',
balloonContent: 'А эта — новогодняя',
iconContent: '12'
}, {
iconLayout: 'default#imageWithContent',
iconImageHref: 'images/ball.png',
iconImageSize: [48, 48],
iconImageOffset: [-24, -24],
iconContentOffset: [15, 15],
iconContentLayout: MyIconContentLayout
});
myMap.geoObjects
.add(myPlacemark)
.add(myPlacemarkWithContent);
});