Question: Write it in C programming Write a program that reads an integer from the user and checks how many of the criteria below it meets
Write a program that reads an integer from the user and checks how many of the criteria below it meets Your output should match the output shown below. To start with, think and decide whether it's better to use multiple if-statements or if-else statements. The integer is positive The integer is a multiple of 2 The integer is a multiple of 3 . Enter integer: 4 The integer 4 is positive The integer 4 is a multiple of 2. Enter integer:-11 The integer -11 doesn't meet any criteria
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
