a
This commit is contained in:
2
.idea/libraries/openjfx_javafx_base.xml
generated
2
.idea/libraries/openjfx_javafx_base.xml
generated
@@ -3,7 +3,7 @@
|
||||
<properties maven-id="org.openjfx:javafx-base:20-ea+2" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/20-ea+2/javafx-base-20-ea+2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/20-ea+2/javafx-base-20-ea+2-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/20-ea+2/javafx-base-20-ea+2-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
||||
6
.idea/libraries/openjfx_javafx_controls.xml
generated
6
.idea/libraries/openjfx_javafx_controls.xml
generated
@@ -3,11 +3,11 @@
|
||||
<properties maven-id="org.openjfx:javafx-controls:22-ea+16" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/22-ea+16/javafx-controls-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/22-ea+16/javafx-controls-22-ea+16-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/22-ea+16/javafx-controls-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
||||
4
.idea/libraries/openjfx_javafx_graphics.xml
generated
4
.idea/libraries/openjfx_javafx_graphics.xml
generated
@@ -3,9 +3,9 @@
|
||||
<properties maven-id="org.openjfx:javafx-graphics:22-ea+16" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-win.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
||||
@@ -10,5 +10,6 @@
|
||||
<orderEntry type="library" name="openjfx.javafx.base" level="project" />
|
||||
<orderEntry type="library" name="openjfx.javafx.graphics" level="project" />
|
||||
<orderEntry type="library" name="openjfx.javafx.controls" level="project" />
|
||||
<orderEntry type="library" name="scala-sdk-2.13.12" level="application" />
|
||||
</component>
|
||||
</module>
|
||||
14
WS23_24/Anwendungsentwicklung/src/Klausur_ueb/Lambda.scala
Normal file
14
WS23_24/Anwendungsentwicklung/src/Klausur_ueb/Lambda.scala
Normal file
@@ -0,0 +1,14 @@
|
||||
package Klausur_ueb
|
||||
|
||||
object Lambda {
|
||||
def main(args: Array[String]): Unit = {
|
||||
val a = Array(1, 2, 3, 4, 5)
|
||||
val summe = a.reduce((x: Int, y: Int) => x + y)
|
||||
val summeKuerzer = a.reduce((x, y) => x + y)
|
||||
val summeNochKuerzer = a.reduce(_ * _)
|
||||
val summeGanzKurz = a.sum //vordefiniert
|
||||
println(summeGanzKurz)
|
||||
println(summeNochKuerzer)
|
||||
}
|
||||
|
||||
}
|
||||
BIN
out/production/Anwendungsentwicklung/HalloWelt$.class
Normal file
BIN
out/production/Anwendungsentwicklung/HalloWelt$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/HalloWelt.class
Normal file
BIN
out/production/Anwendungsentwicklung/HalloWelt.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Lambda$.class
Normal file
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Lambda$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Lambda.class
Normal file
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Lambda.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Task.class
Normal file
BIN
out/production/Anwendungsentwicklung/Klausur_ueb/Task.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/FrenchDude$.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/FrenchDude$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/FrenchDude.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/FrenchDude.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/additionCurry$.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/additionCurry$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/additionCurry.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/additionCurry.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/calculate$.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/calculate$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P10/calculate.class
Normal file
BIN
out/production/Anwendungsentwicklung/P10/calculate.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P9/Numbers$.class
Normal file
BIN
out/production/Anwendungsentwicklung/P9/Numbers$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P9/Numbers.class
Normal file
BIN
out/production/Anwendungsentwicklung/P9/Numbers.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P9/test$HalloWelt$.class
Normal file
BIN
out/production/Anwendungsentwicklung/P9/test$HalloWelt$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/P9/test.class
Normal file
BIN
out/production/Anwendungsentwicklung/P9/test.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/Palindrom$.class
Normal file
BIN
out/production/Anwendungsentwicklung/Palindrom$.class
Normal file
Binary file not shown.
BIN
out/production/Anwendungsentwicklung/Palindrom.class
Normal file
BIN
out/production/Anwendungsentwicklung/Palindrom.class
Normal file
Binary file not shown.
Reference in New Issue
Block a user