Answer:
See Explanation
Explanation:
Considering the first program: DebugSix2.java
The following statement needs to be terminated
System.out.println("\nEnd of application")
as
System.out.println("\nEnd of application");
Then, the loop needs to be enclosed as this:
for(a = MIN; a <= MAX; a++){
letter = (char)a;
System.out.print(" " + letter);
if((a == STOPLINE1) & (a == STOPLINE2))
System.out.println();}
Considering the first program: DebugSix4.java
You only need to initialize variable count to 0 as this:
count = 0
I've added the correct source code as an attachment