Public Class Swapping (Static Void Swap (Int

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class Swapping {

static void swap(int i,int j){


int temp=i;
i=j;
j=temp;
System.out.println("i = " + i + " j = " + j);
}
public static void main(String[] args){
int i=1;
int j=2;
swap(i,j);
}
}

You might also like