summaryrefslogtreecommitdiffstats
path: root/Java/MaxDemo.java
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
committermsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
commit9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch)
treeeb1efc1d028b949dd83bb710c68be8eff58f26e7 /Java/MaxDemo.java
downloadschool-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.gz
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.bz2
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.zip
Inital CommitHEADmaster
Diffstat (limited to 'Java/MaxDemo.java')
-rw-r--r--Java/MaxDemo.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/Java/MaxDemo.java b/Java/MaxDemo.java
new file mode 100644
index 0000000..512ef2f
--- /dev/null
+++ b/Java/MaxDemo.java
@@ -0,0 +1,43 @@
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+import java.lang.Math;
+class MaxDemo {
+ static float max(float a, float b){
+ if (a > b) {
+ return a;
+ }
+ return b;
+ }
+ static float max(float a, float b, float c){
+ float max = a;
+ if (b > a) {
+ max = b;
+ }
+
+ if (c > max) {
+ max = c;
+ }
+ return max;
+
+ }
+
+ public static void main(String[] args) throws java.io.IOException{
+ float a, b, c;
+ System.out.println("input three numbers");
+ BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
+ a = Float.parseFloat(input.readLine());
+ b = Float.parseFloat(input.readLine());
+ c = Float.parseFloat(input.readLine());
+ System.out.println("output of greater between first 2 numbers");
+ System.out.println(max(a, b));
+ System.out.println("output of greater between all numbers");
+ System.out.println(max(a, b, c));
+
+
+
+
+
+ }
+}
+
+//By msglm; Licensed under the AGPL v3