Jump to content
Fórum Script Brasil
  • 0

qual o erro aqui?


weslleyh

Question

a = int(input("Digite o 1° numero>> "))
b = int(input("Digite o 2° numero>> "))
c = int(input("Digite o 3° numero>> "))
if (a > B) and (a > c):
    print (a," é o maior numero")
if (b > a) and (b > c):
    print(b," é o maior numero")
else:
    print (c," é o maior numero")

Edited by fercosmig
desabilitar emoticons & add tags
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
a = int(input("Digite o 1° numero>> "))

b = int(input("Digite o 2° numero>> "))

c = int(input("Digite o 3° numero>> "))

if (a > B) and (a > c):

print (a," é o maior numero")

if (b > a) and (b > c):

print(b," é o maior numero")

else:

print (c," é o maior numero")

Bem você deve usar um else entre os dois if e usar o then junto com o if.

if(a>b) and (a>c) then
    print(b,''é o maior número'')
else
  if (b>a) and (b>c) then
     print(b,''é o maior numero'')
  else
     print(c,''é o maior numero'')
  end
  end
end
end;

Desculpa se coloquei algum 'end' errado mas fiz na pressa aqui. Espero ter ajudado!

Edited by Deivid_hf
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...