Skip to content

Commit 0542f2b

Browse files
committed
Initial commit
0 parents  commit 0542f2b

File tree

491 files changed

+14963
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

491 files changed

+14963
-0
lines changed

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/uiDesigner.xml

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaKursu6.iml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>

src/Gun01/Merhaba.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package Gun01;
2+
3+
public class Merhaba {
4+
public static void main(String[] args) {
5+
6+
System.out.println("Merhaba Dunya");
7+
System.out.println("Selen Dilek Java'da ");
8+
System.out.println("Selen Dilek .");
9+
10+
11+
}
12+
}

src/Gun01/Merhaba2.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package Gun01;
2+
3+
public class Merhaba2 {
4+
public static void main(String[] args) //ana bolum
5+
{ //basla -> basina // koydugumuzda sonra yazilanlari yorm olarak dusunur ve dikkate almaz.
6+
//bu bolumu algoritmayla ayni oldugunu gostermek icin yazdik.
7+
System.out.println("Hello "); //Hello yaz
8+
9+
/*
10+
Burasicoklu satirli not yazabilmek icin kullanilir.
11+
*/
12+
} //Dur
13+
}

src/Gun01/Merhaba3.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package Gun01;
2+
3+
public class Merhaba3 {
4+
public static void main(String[] args) {
5+
System.out.println();
6+
}
7+
}

src/Gun02/_01_CommentPrint.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package Gun02;
2+
3+
public class _01_CommentPrint {
4+
public static void main(String[] args) { //anabolum once burasi calisir burdan baslar.
5+
// icin crl+/
6+
7+
System.out.println("Merhaba Dunya");
8+
9+
10+
11+
/* ctrl+shift+/
12+
burden fazla yorum satiri icin
13+
14+
*/
15+
16+
17+
18+
19+
20+
21+
22+
23+
}
24+
}

src/Gun02/_02_Ornek1.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package Gun02;
2+
3+
public class _02_Ornek1 {
4+
public static void main(String[] args) { //main yaz enter so yaz enter
5+
6+
7+
System.out.println("Merhaba Dunya "); // noktali virgul , emrim bittiyerine getir
8+
//ben ekrana aynen yazdiririm , cift tirnak arasindakini.
9+
System.out.println("Merhaba Dunya2"); //satir satir yazar
10+
System.out.print("merhaba1"); //diger yazilani yanina getirir line line yok.
11+
System.out.print("merhaba2");
12+
System.out.println(); //bir sey yazmaz satir atlatir. yazmaz bir sey.
13+
System.out.println("merhaba3");
14+
}
15+
}

0 commit comments

Comments
 (0)