WHAT'S NEW?
Showing posts with label negative. Show all posts
Showing posts with label negative. Show all posts

class PositiveNegative
{
public static void main(String[] args)
{
int n=10;
if (n<0)
{
System.out.println("Number is negative");
}
else
{
System.out.println("Number is positive");
}
}
}