blob: faa927ce90c89d2d43444fb06befe274ce057d6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class Dollars {
public static void main(String[] args) throws java.io.IOException {
int dollars, cents;
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
dollars = Integer.parseInt(input.readLine());
cents = dollars%100;
dollars = (dollars-cents)/100;
System.out.println("this is $" + dollars + " dollars and " + cents + " cents");
}
}
//By msglm; Licensed under the AGPL v3
|