write a program in Java to input two numbers and swap them using third variable
Answers
Answered by
5
Answer:
static void main(into a,into b)
{
int c=a;
a=b;
b=c;
}
Similar questions