Hindi, asked by Gopi8529, 11 months ago

A program of java to check equal or unequal numbers

Answers

Answered by ghostbest13
0
Accept two numbers from the system
n1 and n2 respectively then:

if(n1==n2)
{
System.out.print(“the numbers are equal”);
}
else
{
System.out.print(“the numbers are not equal”);


Then end the program
Similar questions