From ff12bb1dd11c509fc7ac7529085df2d2407b0ece Mon Sep 17 00:00:00 2001 From: bd-912 Date: Fri, 26 Apr 2024 23:33:15 -0600 Subject: Add my test library --- output/ex36.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 output/ex36.java (limited to 'output/ex36.java') diff --git a/output/ex36.java b/output/ex36.java new file mode 100644 index 0000000..333bd7d --- /dev/null +++ b/output/ex36.java @@ -0,0 +1,15 @@ +class ex36{ + public static void main(String[] a){ + Fac b ; + b = new Fac() ; + System.out.println(b.ComputeFac(10)); + } +} + +class Fac { + public int ComputeFac(int num){ + int num_aux ; + num_aux = 4 ; + return num_aux ; + } +} -- cgit v1.2.3