diff options
Diffstat (limited to 'testapp/java_files/main_palindrome.java')
-rw-r--r-- | testapp/java_files/main_palindrome.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/java_files/main_palindrome.java b/testapp/java_files/main_palindrome.java index bd463e5..c0745f9 100644 --- a/testapp/java_files/main_palindrome.java +++ b/testapp/java_files/main_palindrome.java @@ -4,11 +4,11 @@ class main_palindrome { if(result.equals(expect)) { - System.out.println("Correct\n:Output expected "+expect+" and got "+result); + System.out.println("Correct:\nOutput expected "+expect+" and got "+result+"\n"); } else { - System.out.println("Incorrect:\nOutput expected "+expect+" but got "+result); + System.out.println("Incorrect:\nOutput expected "+expect+" but got "+result+"\n"); System.exit(1); } } |