This program should prompt the user to enter an exact multiple of 19 that is greater than 200. Then?

... the program should analyze the input and display a response to each of the four possible results of the analysis. See sample runs below.Enter an

... the program should analyze the input and display a response to each of the four possible results of the analysis. See sample runs below.

Enter an exact multiple of 19 that is greater than 200 76
No, 76 is a multiple of 19 but it is not greater than 200
>>>
Enter an exact multiple of 19 that is greater than 200 55
55 is not over 200 and also is not a multiple of 19
>>>
Enter an exact multiple of 19 that is greater than 200 222
222 is over 200 but is not a multiple of 19
>>>
Enter an exact multiple of 19 that is greater than 200 380
Good input. 19 divides into 380 exactly 20 times

This is a question for my cop 1000 class and for some reason i dont know where to start even math-wise

value = float(input("Enter an exact multiple of 19 that is greater than 200:")) # prompt for one
for value in range(200):#test for one
if value > 200 and value %19 == 0:
print(value"is a good input!")
else:
print("the values are not a multiple of 19 or greater than 200")

this is all i got so far its obviously horrible and not correct so help a noob out

or:... the program should analyze the input and display a response to each of the four possible results of the analysis. See sample runs below.Enter an exact multiple of 19 that is greater than 200 76No, 76 is a multiple of 19 but it is not greater than 200>>> Enter an exact multiple of 19 that is greater than 200 5555 is not over 200 and also is not a multiple of 19>>> Enter an exact multiple of 19 that is greater than 200 222222 is over 200 but is not a multiple of 19>>> Enter an exact multiple of 19 that is greater than 200 380Good input. 19 divides into 380 exactly 20 timesThis is a question for my cop 1000 class and for some reason i dont know where to start even math-wise value = float(input(\"Enter an exact multiple of 19 that is greater than 200:\")) # prompt for one for value in range(200):#test for one if value > 200 and value %19 == 0: print(value\"is a good input!\") else: print(\"the values are not a multiple of 19 or greater than 200\")this is all i got so far its obviously horrible and not correct so help a noob out


or:lol i'm in your class at the 727 campus I have the same problem... did you solve it yet?

Tags: