blob: 7c6163ddb3fee6efce854a87237fff12431eb642 (
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class OrderChecker {
public static void main(String[] args) throws java.io.IOException {
final int boltPrice = 5,nutPrice = 3, washerPrice = 1;
int bolts,nuts,washers,total;
System.out.println("Bolts?");
BufferedReader boltsin = new BufferedReader(new InputStreamReader(System.in));
bolts = Integer.parseInt(boltsin.readLine());
System.out.println("Nuts?");
BufferedReader nutsin = new BufferedReader(new InputStreamReader(System.in));
nuts = Integer.parseInt(nutsin.readLine());
System.out.println("Washers?");
BufferedReader washersin = new BufferedReader(new InputStreamReader(System.in));
washers = Integer.parseInt(washersin.readLine());
total = (bolts*boltPrice)+(nuts*nutPrice)+(washers*washerPrice);
System.out.println("your total is: " + total);
}
}
//By msglm; Licensed under the AGPL v3
|