/*Developed By:Renu Singh *Role :Programmer *Qualification:B.Tech( Computer Science & Engg.) **/ class blocktest { public static void main(String args[]) { int x,y; y=40; for(x=0;x<15;x++) { System.out.println("the value of x:"+x); System.out.println("the value of y:"+y); y=y-3; } System.out.println("the value of y:"+y); } }