Compare commits

...

10 Commits

Author SHA1 Message Date
DH10RBH
90b9cccf85 Merge remote-tracking branch 'origin/master' 2024-04-15 11:44:50 +02:00
DH10RBH
cb4c5c2b8e Test Commit 2024-04-15 11:44:40 +02:00
DH10RBH
bac42c25fd Test Commit 2024-04-15 11:37:46 +02:00
DH10RBH
bc35b1d0eb Test Commit 2024-04-15 11:25:12 +02:00
DH10RBH
fa079409fd v1 2024-04-15 10:34:14 +02:00
DH10RBH
5004561108 v1 2024-04-15 10:32:11 +02:00
DH10RBH
0e4d60dcb7 v1 2024-04-15 10:30:02 +02:00
DH10RBH
46243949d5 v1 2024-04-15 10:28:28 +02:00
DH10RBH
5435521cba Bitte funktionier2 2024-04-15 10:27:46 +02:00
DH10RBH
67eb6a84e9 Bitte funktionier 2024-04-15 10:23:14 +02:00
62 changed files with 143 additions and 59 deletions

11
.idea/modules.xml generated Normal file
View 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
View 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
View 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.

View 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>

View 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>

View 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);
}
}
}
}

View 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>

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View 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

View 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>

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View 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

View 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

View 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>

View 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>

View File

@@ -6,8 +6,9 @@ Ein Ordnung gibt es noch nicht.
## Bisher vollständig vorhanden:
- vieles?
## Angefangene unfertige Lösungen:
- evtl.
- Lauffähiges Java

View File

@@ -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">{
&quot;associatedIndex&quot;: 8
}</component>
<component name="ProjectId" id="2eaXOdPgeVOMpJi3jqwUn7dO7kg" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">{
&quot;keyToString&quot;: {
&quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
&quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
&quot;WebServerToolWindowFactoryState&quot;: &quot;false&quot;,
&quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
&quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
&quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
&quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
&quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
}
}</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>