diff options
author | Prabhu Ramachandran | 2015-09-29 13:45:06 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-09-29 13:45:06 +0530 |
commit | ebbf135af98720f1979cd28a9108817bac385ce7 (patch) | |
tree | e812ac5466ad043f867c58bc363df823522a8468 /yaksh/java_files/main_lastDigit.java | |
parent | 31f5e743031d105b0406e9587dc33bb065cd6e4d (diff) | |
parent | 53be4bc2ec40a9a84ff5ea73db2fbea0a07f5338 (diff) | |
download | online_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.gz online_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.bz2 online_test-ebbf135af98720f1979cd28a9108817bac385ce7.zip |
Merge pull request #56 from ankitjavalkar/examtime
Start and Expiry times for Quizzes
Diffstat (limited to 'yaksh/java_files/main_lastDigit.java')
-rw-r--r-- | yaksh/java_files/main_lastDigit.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/yaksh/java_files/main_lastDigit.java b/yaksh/java_files/main_lastDigit.java new file mode 100644 index 0000000..05439e2 --- /dev/null +++ b/yaksh/java_files/main_lastDigit.java @@ -0,0 +1,36 @@ +class main_lastDigit +{ + public static <E> void check(E expect, E result) + { + if(result.equals(expect)) + { + System.out.println("Correct:\nOutput expected "+expect+" and got "+result+"\n"); + } + else + { + System.out.println("Incorrect:\nOutput expected "+expect+" but got "+result+"\n"); + System.exit(1); + } + } + public static void main(String arg[]) + { + Test t = new Test(); + boolean result; + result= t.lastDigit(12, 2, 13); + System.out.println("Input submitted to the function: 12, 2, 13"); + check(true, result); + result = t.lastDigit(11, 52, 32); + System.out.println("Input submitted to the function: 11, 52, 32"); + check(true, result); + result = t.lastDigit(6, 34, 22); + System.out.println("Input submitted to the function: 6, 34, 22"); + check(false, result); + result = t.lastDigit(6, 46, 26); + System.out.println("Input submitted to the function: 63"); + check(true, result); + result = t.lastDigit(91, 90, 92); + System.out.println("Input submitted to the function: 91"); + check(false, result); + + } +} |