Compare commits
8 Commits
detached
...
bac42c25fd
Author | SHA1 | Date | |
---|---|---|---|
|
bac42c25fd | ||
|
bc35b1d0eb | ||
|
fa079409fd | ||
|
5004561108 | ||
|
0e4d60dcb7 | ||
|
46243949d5 | ||
|
5435521cba | ||
|
67eb6a84e9 |
0
Objektorientierung I, afg1/.idea/.gitignore → .idea/.gitignore
generated
vendored
0
Objektorientierung I, afg1/.idea/.gitignore → .idea/.gitignore
generated
vendored
11
.idea/modules.xml
generated
Normal file
11
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/Gitea Repo S1.iml" filepath="$PROJECT_DIR$/Gitea Repo S1.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/Objektorientierung III, afg3/Objektorientierung III, afg3.iml" filepath="$PROJECT_DIR$/Objektorientierung III, afg3/Objektorientierung III, afg3.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/Variablen und Ausdruecke afg3/Variablen und Ausdruecke afg3.iml" filepath="$PROJECT_DIR$/Variablen und Ausdruecke afg3/Variablen und Ausdruecke afg3.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/Variablen und Ausdruecke aufg 1 und 2/Variablen und Ausdruecke aufg 1 und 2.iml" filepath="$PROJECT_DIR$/Variablen und Ausdruecke aufg 1 und 2/Variablen und Ausdruecke aufg 1 und 2.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
11
Gitea Repo S1.iml
Normal file
11
Gitea Repo S1.iml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/Objektorientierung I, afg1" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
Binary file not shown.
6
Kontrollstrukturen/Kontrollstrukturen afg1/.idea/misc.xml
generated
Normal file
6
Kontrollstrukturen/Kontrollstrukturen afg1/.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" default="true">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
8
Kontrollstrukturen/Kontrollstrukturen afg1/.idea/modules.xml
generated
Normal file
8
Kontrollstrukturen/Kontrollstrukturen afg1/.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/Kontrollstrukturen afg1.iml" filepath="$PROJECT_DIR$/Kontrollstrukturen afg1.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
20
Kontrollstrukturen/Kontrollstrukturen afg1/src/Main.java
Normal file
20
Kontrollstrukturen/Kontrollstrukturen afg1/src/Main.java
Normal file
@@ -0,0 +1,20 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
||||
int MAXIMUM;
|
||||
MAXIMUM = 20;
|
||||
|
||||
|
||||
|
||||
for ( int i = 1; i < MAXIMUM; i++ ){
|
||||
if (i %2 == 0) {
|
||||
System.out.println(i);
|
||||
}
|
||||
}
|
||||
for (int i = MAXIMUM; i > 1; i--) {
|
||||
if (i %2 != 0) {
|
||||
System.out.println(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
6
Objektorientierung/Objektorientierung I, afg1/.idea/vcs.xml
generated
Normal file
6
Objektorientierung/Objektorientierung I, afg1/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
8
Objektorientierung/Objektorientierung I, afg1/out/production/Objektorientierung/.idea/.gitignore
generated
vendored
Normal file
8
Objektorientierung/Objektorientierung I, afg1/out/production/Objektorientierung/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
6
Objektorientierung/Objektorientierung I, afg1/out/production/Objektorientierung/.idea/misc.xml
generated
Normal file
6
Objektorientierung/Objektorientierung I, afg1/out/production/Objektorientierung/.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
29
Objektorientierung/Objektorientierung III, afg3/.gitignore
vendored
Normal file
29
Objektorientierung/Objektorientierung III, afg3/.gitignore
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
### IntelliJ IDEA ###
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
8
Objektorientierung/Objektorientierung III, afg3/.idea/.gitignore
generated
vendored
Normal file
8
Objektorientierung/Objektorientierung III, afg3/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
11
Objektorientierung/Objektorientierung III, afg3/untitled.iml
Normal file
11
Objektorientierung/Objektorientierung III, afg3/untitled.iml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
@@ -6,8 +6,9 @@ Ein Ordnung gibt es noch nicht.
|
||||
|
||||
## Bisher vollständig vorhanden:
|
||||
- vieles?
|
||||
|
||||
## Angefangene unfertige Lösungen:
|
||||
- evtl.
|
||||
|
||||
- Lauffähiges Java
|
||||
|
||||
|
||||
|
58
untitled/.idea/workspace.xml
generated
58
untitled/.idea/workspace.xml
generated
@@ -1,58 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AutoImportSettings">
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="c15bb437-814c-4e9c-a95e-808f2fbaf4d0" name="Changes" comment="" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="FileTemplateManagerImpl">
|
||||
<option name="RECENT_TEMPLATES">
|
||||
<list>
|
||||
<option value="Class" />
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
<component name="ProjectColorInfo">{
|
||||
"associatedIndex": 8
|
||||
}</component>
|
||||
<component name="ProjectId" id="2eaXOdPgeVOMpJi3jqwUn7dO7kg" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
</component>
|
||||
<component name="PropertiesComponent">{
|
||||
"keyToString": {
|
||||
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
||||
"WebServerToolWindowFactoryState": "false",
|
||||
"node.js.detected.package.eslint": "true",
|
||||
"node.js.detected.package.tslint": "true",
|
||||
"node.js.selected.package.eslint": "(autodetect)",
|
||||
"node.js.selected.package.tslint": "(autodetect)",
|
||||
"vue.rearranger.settings.migration": "true"
|
||||
}
|
||||
}</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="c15bb437-814c-4e9c-a95e-808f2fbaf4d0" name="Changes" comment="" />
|
||||
<created>1712143633808</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1712143633808</updated>
|
||||
<workItem from="1712143634817" duration="130000" />
|
||||
<workItem from="1712143786441" duration="777000" />
|
||||
<workItem from="1712735802871" duration="251000" />
|
||||
<workItem from="1712736064997" duration="25000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="3" />
|
||||
</component>
|
||||
</project>
|
Reference in New Issue
Block a user