CSC 160 - Computer Programming for Non-majors

Assignment #12 - Finding out whether numbers are even or odd

Due Thursday, November 12, 2015

Your program will ask the user for the number of values that (s)he will enter. Then your program will ask the user for that number of values

For each value that the user enters, your program will print whether the number even or odd.

Hint - A number is even if dividing it by two gives you a remainder of 0 (i.e., x % 2 == 0).

[Back to the Assignments List]