简体   繁体   中英

If-Else Statement-Positive and Negative Integers

I am just starting my first computer science class and have a question! Here are the exact questions from my class:

"Write a complete python program that allows the user to input 3 integers and outputs yes if all three of the integers are positive and otherwise outputs no. For example inputs of 1,-1,5. Would output no."

"Write a complete python program that allows the user to input 3 integers and outputs yes if any of three of the integers is positive and otherwise outputs no. For example inputs of 1,-1,5. Would output yes."

I started using the if-else statement(hopefully I am on the right track with that), but I am having issues with my output.

num = int(input("Enter a number: "))
num = int(input("Enter a number: "))
num = int(input("Enter a number: "))
if num > 0:
   print("YES")
else:
   print("NO")

I have this, but I am not sure where to go with this to get the desired answers. I do not know if I need to add an elif or if I need to tweak something else.

You probably want to create three separate variables like this:

num1 = int(input("Enter number 1: "))
num2 = int(input("Enter number 2: "))
num3 = int(input("Enter number 3: "))

In your code you only keep the value of the last number, as you are always writing to the same variable name :)

From here using an if else statement is the correct idea! You should give it a try :) If you get stuck try looking up and and or keywords in python.

On the first 3 lines, you collect a number, but always into the same variable ( num ). Since you don't look at the value of num in between, the first two collected values are discarded.

You should look into using a loop, eg for n in range(3):

for n in range(3):
    num = int(input("Enter a number: "))
    if num > 0:
        print("YES")
    else:
        print("NO")

Use the properties of the numbers...

num1 = int(input("Enter number 1: "))
num2 = int(input("Enter number 2: "))
num3 = int(input("Enter number 3: "))

Try Something like this

if num1< 0 or num2 <0 or num3 < 0:
  print ('no')

elif num1 > 0 or num2 > 0 or num3 > 0:
  print ('yes')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM