Solutions to Quiz3.c --------------------- Problem 1 --------- False False True True True Problem 2 --------- 20 --- 14 63 --- 8 24 40 --- Problem 3 --------- total = 0 n = int(raw_input("Enter a positive integer: ")) while (n%2 != 0) and (n >= 0): total = total + n n = int(raw_input("Enter a positive integer: ")) print "The total is:", total