Составить программу, которая печатает true, если точка с координатами (x;y) принадлежит заштрихованной области и false в противном случае.
program c1;varx,y:integer;beginreadln(x,y);if ((y<=-2*x + 6) and (y>=-0.1*x - 3.5) and (y<=(7/6)*x+(17/6)))then write ('true') else write('false');end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
program c1;
var
x,y:integer;
begin
readln(x,y);
if ((y<=-2*x + 6) and (y>=-0.1*x - 3.5) and (y<=(7/6)*x+(17/6)))
then write ('true') else write('false');
end.