Computer Science, asked by shrabastinidhi, 1 year ago

write a program in Java to input two numbers and swap them using third variable​

Answers

Answered by shobhit9416
5

Answer:

static void main(into a,into b)

{

int c=a;

a=b;

b=c;

}

Similar questions