-
Notifications
You must be signed in to change notification settings - Fork 0
/
IfCozumsuz11.java
51 lines (42 loc) · 1.19 KB
/
IfCozumsuz11.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package Java2;
import java.util.Scanner;
//Kullanıcıdan para üstü olarak verilecek miktarı okuyan ve bu para üstünü
//kaç tane (1 Kuruş, 5 Kuruş, 10 Kuruş, 25 Kuruş, 50 Kuruş) ile vereceğini
//ekranda gösteren programı yazınız.
public class IfCozumsuz11 {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int money;
int elli = 0;
int yirmibes = 0;
int on = 0;
int bes = 0;
int bir = 0;
System.out.println("Money: ");
money = input.nextInt();
if (money >= 50) {
elli = money / 50;
money = money % 50;
}
if (money >= 25){
yirmibes = money / 25;
money = money % 25;
}
if (money >= 10){
on = money / 10;
money = money % 10;
}
if (money >= 5) {
bes = money / 5;
money = money % 5;
}
if (money >= 1) {
bir = money;
}
System.out.println(elli);
System.out.println(yirmibes);
System.out.println(on);
System.out.println(bes);
System.out.println(bir);
}
}