blob: 70168a42198e94ec84043d974d4888e89a37985a (
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.lang.Math;
class AverageDemo {
static float average(float a, float b){
return (a+b)/2;
}
public static void main(String[] args) throws java.io.IOException{
float a, b;
System.out.println("input two numbers");
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
a = Float.parseFloat(input.readLine());
b = Float.parseFloat(input.readLine());
System.out.println("output:");
System.out.println(average(a, b));
}
}
//By msglm; Licensed under the AGPL v3
|