Computer Science, asked by shejal288, 11 months ago

write a program to print one of the word negative,zereor positive according to whether varieble N less than zero ,equal to zero or greater than zero,respectively.​

Answers

Answered by aryansharmanmore
0

Answer:

don't know the answers

Answered by uniyalsudhir368
0

Answer:

To check whether a number is positive, negative, odd, even or zero. This problem is solved using if…elif…else and nested if…else statement.

Approach :

A number is positive if it is greater than zero. We check this in the expression of if.

If it is False, the number will either be zero or negative.

This is also tested in subsequent expression.

In case of odd and even A number is even if it is perfectly divisible by 2.

When the number is divided by 2, we use the remainder operator % to compute the remainder.

If the remainder is not zero, the number is odd.

Explanation:

hope it will help you

Similar questions