blob: 71a1974563a3cca4b725df18ba9bc3ba99691b19 (
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
|
//BufferedReader is faster than scanner as it doesn't parse the text. Iterated over 1000 times, it saves 30 seconds in total.
import java.io.BufferedReader;
import java.io.InputStreamReader;
class Discount {
public static void main(String[] args) throws java.io.IOException {
int amount;
System.out.println("input amount:");
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
amount = Integer.parseInt(input.readLine());
if (amount > 10){
System.out.println("Dicounted Price: " + amount*0.9);
} else {
System.out.println("Price: " + amount);
}
}
}
//By msglm; Licensed under the AGPL v3
|