Skip to content

Commit ff4ab8c

Browse files
committed
Java Programs & Projects Addition
1 parent 398354c commit ff4ab8c

20 files changed

+252
-146
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bin/
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Planting a Tree</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Codecademy Java Courses
2+
3+
## [Codecademy Java Catalog](https://www.codecademy.com/catalog/language/java)
4+
5+
### Beginner friendly courses
6+
7+
- [Learn Java](https://www.codecademy.com/learn/learn-java/)
8+
- [Java: Introductions and Variables](https://www.codecademy.com/learn/java-introductions-and-variables)
9+
- [Java: Object-Oriented Programming](https://www.codecademy.com/learn/java-object-oriented-programming)
10+
- [Java: Conditionals and Control Flow](https://www.codecademy.com/learn/java-conditionals-and-control-flow)
11+
- [Java: Loops and Arrays](https://www.codecademy.com/learn/java-loops-and-arrays)
12+
- [Java: Going Further with Classes and Methods](https://www.codecademy.com/learn/java-going-further-with-classes-and-methods)
13+
- [Java: Inheritance and Polymorphism](https://www.codecademy.com/learn/java-inheritance-and-polymorphism)
14+
15+
### Intermediate courses
16+
17+
- [Java for Programmers](https://www.codecademy.com/learn/java-for-programmers)
18+
- [Java: Algorithms](https://www.codecademy.com/learn/java-algorithms)
19+
- [Technical Interview Practice with Java](https://www.codecademy.com/learn/technical-interview-practice-with-java)
20+
- [Learn Spring](https://www.codecademy.com/learn/learn-spring)
21+
- [Learn the Basics of Android](https://www.codecademy.com/learn/learn-the-basics-of-android)
22+
23+
### Skill Paths
24+
25+
- [Pass the Technical Interview with Java](https://www.codecademy.com/learn/paths/pass-the-technical-interview-with-java)
26+
- [Study for the AP Computer Science A Exam](https://www.codecademy.com/learn/paths/ap-computer-science-a)
27+
- [Create REST APIs with Spring and Java](https://www.codecademy.com/learn/paths/create-rest-apis-with-spring-and-java)
28+
- [Build Basic Android Apps with Java](https://www.codecademy.com/learn/paths/introduction-to-android-with-java)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
public class Tree {
3+
4+
public static void main(String[] args) {
5+
// We’re going to introduce ourselves and print a tree to the screen
6+
System.out.println("Hey there, I'm Aswin and I'm revising my Java concepts");
7+
System.out.println();
8+
System.out.println("I'm going to plant a tree today!");
9+
System.out.println();
10+
System.out.println("\t * ");
11+
System.out.println("\t *** ");
12+
System.out.println("\t *** ");
13+
System.out.println("\t ******* ");
14+
System.out.println("\t ******* ");
15+
System.out.println("\t ******* ");
16+
System.out.println("\t ***** ");
17+
System.out.println("\t ***** ");
18+
System.out.println("\t ||| ");
19+
System.out.println("\t ||| ");
20+
System.out.println("\t ||| ");
21+
System.out.println("\t ||| ");
22+
System.out.println("\t~~~~~~~~~~~");
23+
System.out.println("\t~~~~~~~~~~~");
24+
System.out.println("\t~~~~~~~~~~~");
25+
System.out.println("\t###########");
26+
}
27+
28+
}

OOP using Java Programs/.classpath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

OOP using Java Programs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bin/

OOP using Java Programs/.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>OOP using Java Programs</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>
-9.75 KB
Binary file not shown.

OOP using Java Programs/Class programs 1.txt

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)