Computer Science, asked by NAdeem3044, 10 months ago

Mathematical function to check whether a number is positive or negative in c#

Answers

Answered by psjadhav9802
0

bool positive = number > 0;

bool negative = number < 0;

Enter this Command Bro

Similar questions