-
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) · 769 Bytes
/
Copy pathMain.java
File metadata and controls
30 lines (24 loc) · 769 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._1008;
import java.util.Scanner;
/**
* @author tahanima
*/
public class Main {
/**
* @param num denotes the employee's number
* @param workedHours denotes the employee's worked hours in a month
* @param hourlyRate denotes the employee's hourly rate
* @return a string containing the answer
*/
public static String solve(int num, int workedHours, double hourlyRate) {
// 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.nextInt(), scanner.nextInt(), scanner.nextDouble()));
}
}