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

public class varconstltr{

public static final int constint=5;


public static void main(String[] args){
int intvariable;
for (int i = 0;i <= 10;i++){
intvariable = i;
System.out.println("All the values are : \n intvariable
= " + intvariable + "\nconstint = " + constint);
}
System.out.println("Directory of this file : c:\\chandan\\varcon
stltr.java");
}
}

You might also like