Прямоугольник является квадратом, если его стороны равны.
# Python 3.x
def is_squard(a, b): return (a == b)
a=float(input("a: "))
b=float(input("b: "))
print("It is squard" if is_squard(a, b) else "It is rectangle")
var
a: integer;
b: integer;
begin
readln(a,b);
if (a=b)
then writeln('квадрат')
else writeln('не квадрат');
end.
Объяснение:
Прямоугольник является квадратом, если его стороны равны.
# Python 3.x
def is_squard(a, b): return (a == b)
a=float(input("a: "))
b=float(input("b: "))
print("It is squard" if is_squard(a, b) else "It is rectangle")
var
a: integer;
b: integer;
begin
readln(a,b);
if (a=b)
then writeln('квадрат')
else writeln('не квадрат');
end.
Объяснение: