summaryrefslogtreecommitdiff
path: root/testapp/java_files/main_moreThan30.java
diff options
context:
space:
mode:
authorprathamesh2013-07-08 11:22:01 +0530
committerprathamesh2013-07-08 11:22:01 +0530
commit754244da53f7e0a63c272ce6d1ffb15c1d5be0ae (patch)
treef505c0b5a1392f552580db5e30b8a33d6faccadb /testapp/java_files/main_moreThan30.java
parent8de499263ec00be5e500693b8db7f4b5ee0d15bd (diff)
downloadonline_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.tar.gz
online_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.tar.bz2
online_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.zip
Added few questions. Made changes to fix minor bugs which were found during testing.
Diffstat (limited to 'testapp/java_files/main_moreThan30.java')
-rw-r--r--testapp/java_files/main_moreThan30.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/testapp/java_files/main_moreThan30.java b/testapp/java_files/main_moreThan30.java
new file mode 100644
index 0000000..7da31cb
--- /dev/null
+++ b/testapp/java_files/main_moreThan30.java
@@ -0,0 +1,36 @@
+class main_moreThan30
+{
+ 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.moreThan30(30);
+ System.out.println("Input submitted to the function: 30");
+ check(false, result);
+ result = t.moreThan30(151);
+ System.out.println("Input submitted to the function: 151");
+ check(true, result);
+ result = t.moreThan30(66);
+ System.out.println("Input submitted to the function: 66");
+ check(false, result);
+ result = t.moreThan30(63);
+ System.out.println("Input submitted to the function: 63");
+ check(true, result);
+ result = t.moreThan30(91);
+ System.out.println("Input submitted to the function: 91");
+ check(true, result);
+
+ }
+}