-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.java
More file actions
30 lines (24 loc) · 748 Bytes
/
Copy pathMain.java
File metadata and controls
30 lines (24 loc) · 748 Bytes
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
package io.github.tahanima.beecrowd._1012;
import java.util.Scanner;
/**
* @author tahanima
*/
public class Main {
/**
* @param a denotes the first floating point number
* @param b denotes the second floating point number
* @param c denotes the third floating point number
* @return a string containing the answer
*/
public static String solve(double a, double b, double c) {
// Implement this method
return "";
}
/**
* Takes care of the problem's input and output.
*/
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println(solve(scanner.nextDouble(), scanner.nextDouble(), scanner.nextDouble()));
}
}