class a
{
public static void main(String[] a)
{
int i=1,j;
i=i++;
System.out.println("The value of i is "+i);
j=i++;
System.out.println("The value of j is "+j);
System.out.println("The value of i is "+i);
}}
//now i have problem that the value of i doesn't change when i increment in same referece variable value of i doesn't change but value of i change when i use other variable than i ?????