v2
This commit is contained in:
commit
41c39062cb
Binary file not shown.
29
Kontrollstrukturen afg1/.gitignore
vendored
Normal file
29
Kontrollstrukturen afg1/.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
Kontrollstrukturen afg1/.idea/.gitignore
generated
vendored
Normal file
8
Kontrollstrukturen afg1/.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
Kontrollstrukturen afg1/.idea/misc.xml
generated
Normal file
6
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" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
8
Kontrollstrukturen afg1/.idea/modules.xml
generated
Normal file
8
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>
|
6
Kontrollstrukturen afg1/.idea/vcs.xml
generated
Normal file
6
Kontrollstrukturen 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>
|
11
Kontrollstrukturen afg1/Kontrollstrukturen afg1.iml
Normal file
11
Kontrollstrukturen afg1/Kontrollstrukturen afg1.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>
|
20
Kontrollstrukturen afg1/src/Main.java
Normal file
20
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
Variablen und Ausdruecke afg3/.idea/.name
generated
Normal file
1
Variablen und Ausdruecke afg3/.idea/.name
generated
Normal file
@ -0,0 +1 @@
|
||||
Variablen und Ausdruecke afg3 & 4
|
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>
|
Loading…
Reference in New Issue
Block a user