Hi
After reading some java tutoria by myself, I found this excersice and I tried to resolve it, but I don't kow what I did wrong, can you help me to resolve it. This is the code I wrote:
public class FixDebugSix2
{
public static void main(String args[])
{
char letter;
int d;
final int MIN = 25;
final int MAX = 122;
final int STOPLINE1 = 85;
final int STOPLINE2 = 122;
for(d = MAX; d <= MIN; d++)
{
letter = (char) d;
System.out.print(" " + letter);
if((d == STOPLINE1)&&(d == STOPLINE2))
System.out.println();
}
System.out.println("\nEnd of application");
}
}