Computer Science, asked by nikhiljoshi51063, 2 months ago

Program to find whether the given number is positive or negative

Answers

Answered by CrazyKanav
0

Answer:

Algorithm:

Start

take input from user , store in variable as num

if num < 0:

print it is a negative number

else:

print it is positive number

Similar questions