Составьте программу,определяющую принадлежность точки A(x;Y)отрезку AB,если A(x1,y1) и B(x1,y2)-концы отрезка.
решение со стороны qbasic
cls
input x
input x1
inputx2
input y
input y1
input y2
if x1<x and x<x2 and y1<y and y<y2 then
print "отрезок A(x,y) принадлежит отрезку AB"
end if
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
решение со стороны qbasic
cls
input x
input x1
inputx2
input y
input y1
input y2
if x1<x and x<x2 and y1<y and y<y2 then
print "отрезок A(x,y) принадлежит отрезку AB"
end if