blob: 512ef2f264b17113f910e212368c7bdbd4ce469b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
|