Hello guys,
could you all check this program for errors and explain what was wrong!!
// Punishment.java
// Import statements go here.
public class Punishment {
public static void main(String [ ] args) {
for ( int i = 0; i < 5 ; i = i +1) {
System.out.println( “ I am really sorry.” );
}
}
}
thanks in advance!!!