public class h3r3tic
{
public static void main(String args[])
{
int intVal=7;

for(int k=1;k<=5000000;k++)
{
System.out.println((char) + intVal);
k--;
}
}
}
I dont understand, is there more to this? Seems like System.out.println((char) + intVal); will print some "char" on the screen plus 7, 5,000,000 times. I dont have a compiler on this PC, but I dont see what this will accomplish. Also, why would you want to make the thing make annoying sounds? When I took Java, seems like we made useful programs.

-Deeboe