Skip to content

Commit 0a800c4

Browse files
Add files via upload
1 parent 274a26a commit 0a800c4

File tree

8 files changed

+818
-0
lines changed

8 files changed

+818
-0
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*----------------------------------------------------------------------------------------------------------------------
2+
Diziye ilkdeğer olarak verilen elemanlar sabit ifadesi olmak zorunda değildir
3+
----------------------------------------------------------------------------------------------------------------------*/
4+
package org.csystem.app;
5+
6+
import org.csystem.app.samples.dateapp.DateUtilApp;
7+
8+
import java.util.Scanner;
9+
10+
import static org.csystem.app.samples.dateapp.DateUtilApp.*;
11+
12+
class App {
13+
public static void main(String [] args)
14+
{
15+
Scanner kb = new Scanner(System.in);
16+
DateUtilApp.run();
17+
}
18+
}
19+
20+
21+
22+
23+
24+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
package org.csystem.app.samples.dateapp;
2+
3+
public class DateUtil {
4+
public static int getDayOfWeek(int day, int month, int year)
5+
{
6+
int dayOfYear;
7+
8+
dayOfYear = getDayOfYear(day, month, year);
9+
10+
if (dayOfYear == -1 || year < 1900)
11+
return -1;
12+
13+
for (int y = 1900; y < year; ++y)
14+
dayOfYear += isLeapYear(y) ? 366 : 365;
15+
16+
return dayOfYear % 7;
17+
}
18+
19+
public static int getDayOfYear(int day, int month, int year)
20+
{
21+
if (!isValidDate(day, month, year))
22+
return -1;
23+
24+
int dayOfYear = day;
25+
26+
switch (month - 1) {
27+
case 11:
28+
dayOfYear += 30;
29+
case 10:
30+
dayOfYear += 31;
31+
case 9:
32+
dayOfYear += 30;
33+
case 8:
34+
dayOfYear += 31;
35+
case 7:
36+
dayOfYear += 31;
37+
case 6:
38+
dayOfYear += 30;
39+
case 5:
40+
dayOfYear += 31;
41+
case 4:
42+
dayOfYear += 30;
43+
case 3:
44+
dayOfYear += 31;
45+
case 2:
46+
dayOfYear += isLeapYear(year) ? 29 : 28;
47+
case 1:
48+
dayOfYear += 31;
49+
}
50+
51+
return dayOfYear;
52+
}
53+
54+
public static boolean isValidDate(int day, int month, int year)
55+
{
56+
if (day < 1 || day > 31 || month < 1 || month > 12)
57+
return false;
58+
59+
int days = 31;
60+
61+
switch (month) {
62+
case 4:
63+
case 6:
64+
case 9:
65+
case 11:
66+
days = 30;
67+
break;
68+
case 2:
69+
days = isLeapYear(year) ? 29 : 28;
70+
}
71+
72+
return day <= days;
73+
}
74+
75+
public static boolean isLeapYear(int year)
76+
{
77+
return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
78+
}
79+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
/*----------------------------------------------------------------------------------------------------------------------
2+
Sınıf çalışması: Parametresi ile aldığı int türden gün, ay ve yıl bilgilerine ilişkin tarihin aşağıdaki
3+
açıklamalara göre haftanın hangi gününe geldiğini döndüren getDayOfWeek metodunu yazınız.
4+
Açıklamalar:
5+
- Metot geçersiz bir tarih için -1 değerini döndürecektir.
6+
- Haftanın günü 1.1.1900 ile verilen tarih arasındaki gün sayısının 7 değerine modu alınarak bulunabilir
7+
- 7 değerine mod alındıktan sonra sıfır Pazar, 1 pazartesi, .., 6 cumartesi günü için
8+
elde edilecek değerdir
9+
- 1.1.1900' den önceki tarihler geçersiz kabul edilecektir
10+
----------------------------------------------------------------------------------------------------------------------*/
11+
package org.csystem.app.samples.dateapp;
12+
13+
public class DateUtilApp {
14+
public static void displayTR(int day, int month, int year)
15+
{
16+
int dayOfWeek = DateUtil.getDayOfWeek(day, month, year);
17+
18+
if (dayOfWeek == -1) {
19+
System.out.println("Geçersiz tarih");
20+
return;
21+
}
22+
23+
switch (dayOfWeek) {
24+
case 0:
25+
System.out.printf("%02d/%02d/%04d Pazar%n", day, month, year);
26+
break;
27+
case 1:
28+
System.out.printf("%02d/%02d/%04d Pazartesi%n", day, month, year);
29+
break;
30+
case 2:
31+
System.out.printf("%02d/%02d/%04d Salı%n", day, month, year);
32+
break;
33+
case 3:
34+
System.out.printf("%02d/%02d/%04d Çarşamba%n", day, month, year);
35+
break;
36+
case 4:
37+
System.out.printf("%02d/%02d/%04d Perşembe%n", day, month, year);
38+
break;
39+
case 5:
40+
System.out.printf("%02d/%02d/%04d Cuma%n", day, month, year);
41+
break;
42+
case 6:
43+
System.out.printf("%02d/%02d/%04d Cumartesi%n", day, month, year);
44+
break;
45+
}
46+
47+
if (dayOfWeek == 0 || dayOfWeek == 6)
48+
System.out.println("Bugün kurs var. Tekrar yaptınız mı?");
49+
else
50+
System.out.println("Kurs günü yaklaşıyor. Tekrar yapınız!!!!");
51+
52+
}
53+
54+
public static void run()
55+
{
56+
java.util.Scanner kb = new java.util.Scanner(System.in);
57+
58+
for (;;) {
59+
System.out.print("Gün bilgisini giriniz:");
60+
int day = Integer.parseInt(kb.nextLine());
61+
62+
if (day == 0)
63+
break;
64+
65+
System.out.print("Ay bilgisini giriniz:");
66+
int month = Integer.parseInt(kb.nextLine());
67+
68+
System.out.print("Yıl bilgisini giriniz:");
69+
int year = Integer.parseInt(kb.nextLine());
70+
71+
displayTR(day, month, year);
72+
}
73+
74+
}
75+
}
76+
+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*----------------------------------------------------------------------------------------------------------------------
2+
Complex sınıfı
3+
----------------------------------------------------------------------------------------------------------------------*/
4+
package org.csystem.math;
5+
6+
public class Complex {
7+
public static Complex add(double re1, double im1, double re2, double im2) //İleride gizlenecek
8+
{
9+
Complex z = new Complex();
10+
11+
z.re = re1 + re2;
12+
z.im = im1 + im2;
13+
14+
return z;
15+
}
16+
17+
public static Complex subtract(double re1, double im1, double re2, double im2) //İleride gizlenecek
18+
{
19+
return add(re1, im1, -re2, -im2);
20+
}
21+
22+
public double re;
23+
public double im;
24+
25+
public Complex()
26+
{
27+
28+
}
29+
30+
public Complex(int a)
31+
{
32+
re = a;
33+
}
34+
35+
public Complex(int a, int b)
36+
{
37+
re = a;
38+
im = b;
39+
}
40+
41+
public Complex getConjugate()
42+
{
43+
Complex z = new Complex();
44+
45+
z.re = re;
46+
z.im = -im;
47+
48+
return z;
49+
}
50+
51+
public double getNorm()
52+
{
53+
return Math.sqrt(re * re + im * im);
54+
}
55+
56+
//add
57+
public static Complex add(double a, Complex z)
58+
{
59+
return add(a, 0, z.re, z.im);
60+
}
61+
62+
public Complex add(Complex z)
63+
{
64+
return add(re, im, z.re, z.im);
65+
}
66+
67+
public Complex add(double a)
68+
{
69+
return add(re, im, a, 0);
70+
}
71+
72+
//subtract
73+
public static Complex subtract(double a, Complex z)
74+
{
75+
return subtract(a, 0, z.re, z.im);
76+
}
77+
78+
public Complex subtract(Complex z)
79+
{
80+
return subtract(re, im, z.re, z.im);
81+
}
82+
83+
public Complex subtract(double a)
84+
{
85+
return subtract(re, im, a, 0);
86+
}
87+
88+
public void offset(double dxy)
89+
{
90+
offset(dxy, dxy);
91+
}
92+
93+
public void offset(double dx, double dy)
94+
{
95+
re += dx;
96+
im += dy;
97+
}
98+
99+
public String toString()
100+
{
101+
return String.format("|%.2f + %.2f * i| = %f", re, im, getNorm());
102+
}
103+
}
104+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*----------------------------------------------------------------------------------------------------------------------
2+
Point sınıfı
3+
----------------------------------------------------------------------------------------------------------------------*/
4+
package org.csystem.math.geometry;
5+
6+
import static java.lang.Math.sqrt;
7+
8+
public class Point {
9+
public int x;
10+
public int y;
11+
12+
public Point()
13+
{
14+
}
15+
16+
public Point(int a)
17+
{
18+
x = a;
19+
}
20+
21+
public Point(int a, int b)
22+
{
23+
x = a;
24+
y = b;
25+
}
26+
27+
public double distance(Point p)
28+
{
29+
return distance(p.x, p.y);
30+
}
31+
32+
public double distance(int a, int b)
33+
{
34+
return sqrt((x - a) * (x - a) + (y - b) * (y - b));
35+
}
36+
37+
public void offset(int dxy)
38+
{
39+
offset(dxy, dxy);
40+
}
41+
42+
public void offset(int dx, int dy)
43+
{
44+
x += dx;
45+
y += dy;
46+
}
47+
48+
public String toString()
49+
{
50+
return String.format("{x: %d, y: %d}", x, y);
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*----------------------------------------------------------------------------------------------------------------------
2+
PointF sınıfı
3+
----------------------------------------------------------------------------------------------------------------------*/
4+
package org.csystem.math.geometry;
5+
6+
import static java.lang.Math.sqrt;
7+
8+
public class PointF {
9+
public float x;
10+
public float y;
11+
12+
public PointF()
13+
{
14+
}
15+
16+
public PointF(float a)
17+
{
18+
x = a;
19+
}
20+
21+
public PointF(float a, float b)
22+
{
23+
x = a;
24+
y = b;
25+
}
26+
27+
public double distance(Point p)
28+
{
29+
return distance(p.x, p.y);
30+
}
31+
32+
public double distance(float a, float b)
33+
{
34+
return sqrt((x - a) * (x - a) + (y - b) * (y - b));
35+
}
36+
37+
public void offset(float dxy)
38+
{
39+
offset(dxy, dxy);
40+
}
41+
42+
public void offset(float dx, float dy)
43+
{
44+
x += dx;
45+
y += dy;
46+
}
47+
48+
public String toString()
49+
{
50+
return String.format("{x: %f, y: %f}", x, y);
51+
}
52+
}

0 commit comments

Comments
 (0)