aboutsummaryrefslogtreecommitdiff
path: root/entries/cc-21/lazy_fib.java
diff options
context:
space:
mode:
Diffstat (limited to 'entries/cc-21/lazy_fib.java')
-rw-r--r--entries/cc-21/lazy_fib.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/entries/cc-21/lazy_fib.java b/entries/cc-21/lazy_fib.java
new file mode 100644
index 0000000..3d06152
--- /dev/null
+++ b/entries/cc-21/lazy_fib.java
@@ -0,0 +1,25 @@
+import java.util.Random;
+
+public class fib {
+ public static int lazy_fib_generator(int num) {
+ if (num == 0 || num == 1) return 1;
+ return lazy_fib_generator(num - 1) + lazy_fib_generator(num - 2);
+ }
+
+ public static void lazy_fib_fuzzer(int num_of_trials) {
+ Random ran = new Random();
+ for (int i = 0; i < num_of_trials; i++) {
+ try {
+ int val = ran.nextInt();
+ System.out.format("Input value: %d \n", val);
+ lazy_fib_generator(val);
+ } catch (Throwable t) {
+ System.out.format("%s This is the price of being lazy!!\n", t);
+ }
+ }
+ }
+
+ public static void main(String[] args) {
+ lazy_fib_fuzzer(10);
+ }
+}