-
Notifications
You must be signed in to change notification settings - Fork 0
/
MethodOverloading2
154 lines (109 loc) · 4.94 KB
/
MethodOverloading2
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import java.util.Scanner;
public class Main {
public static int cikarma(int a,int b) {
return (a - b);
}
public static double bolme(int a,int b) {
return ((double)a / b);
}
public static int toplama(int a,int b){
return (a + b);
}
public static int toplama(int a,int b,int c) {
return (a + b + c);
}
public static int carpma(int a,int b) {
return a * b;
}
public static int carpma(int a,int b,int c) {
return a * b * c;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String islemler = "1. Toplama İşlemi\n"
+"2. Çıkarma İşlemi\n"
+ "3. Çarpma İşlemi\n"
+ "4. Bölme İşlemi\n"
+ "Çıkış için q'ya basın.";
System.out.println("****************************************");
System.out.println(islemler);
System.out.println("****************************************");
while (true) {
System.out.print("İşlemi Seçiniz : ");
String islem = scanner.nextLine();
if (islem.equals("q")){
System.out.println("Programdan Çıkılıyor...");
break;
}
else if (islem.equals("1")) {
System.out.print("Kaç değer toplayacaksınız ? (2 veya 3): ");
int kacsayi = scanner.nextInt();
if (kacsayi == 2) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen sayıların toplamları : " + (toplama(a, b)));
}
else if (kacsayi == 3) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
System.out.print("c:");
int c = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen sayıların toplamları : " + (toplama(a, b,c)));
}
else {
System.out.println("Bunun için uygun metod bulunmuyor...");
}
}
else if (islem.equals("2")) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen Sayıları Farkları : " + cikarma(a, b));
}
else if (islem.equals("3")){
System.out.print("Kaç değer çarpacaksınız ? (2 veya 3): ");
int kacsayi = scanner.nextInt();
if (kacsayi == 2) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen sayıların çarpımları : " + (carpma(a, b)));
}
else if (kacsayi == 3) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
System.out.print("c:");
int c = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen sayıların çarpımları : " + (carpma(a, b,c)));
}
else {
System.out.println("Bunun için uygun metod bulunmuyor...");
}
}
else if (islem.equals("4")) {
System.out.print("a:");
int a = scanner.nextInt();
System.out.print("b:");
int b = scanner.nextInt();
scanner.nextLine();
System.out.println("Girilen Sayıların Bölümü : " + bolme(a, b));
}
else {
System.out.println("Geçersiz İşlem...");
}
}
}
}