TEMA

Wrong answer (0%)

jlima14 preguntado 2 years ago

esse foi o codigo que fiz e esta dando isso

x, y = input().split(' ') x = float(x) y = float(y)

if x > 0 and y > 0: print('Q1')

if x < 0 and y > 0: print('Q2')

if x < 0 < y: print('Q3')

if x > 0 and y < 0: print('Q4')

if x == 0 and y == 0: print('Origem')

if x == 0 and y != 0: print('Eixo Y')

if x != 0 and y == 0: print('Eixo X')

Este tema aún no ha sido contestado. ¡Sé el primero!

Recuerda no enviar soluciones. Tu mensaje puede ser revisado por nuestros moderadores.