nicht kompilierbare Zeile auskommentiert.
This commit is contained in:
parent
9022fa3546
commit
e8fcfde21b
|
@ -0,0 +1,8 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_16" project-jdk-name="openjdk-17" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/02_Praktikum-2_Ausdruck.iml" filepath="$PROJECT_DIR$/02_Praktikum-2_Ausdruck.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RunConfigurationProducerService">
|
||||
<option name="ignoredProducers">
|
||||
<set>
|
||||
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
||||
</set>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
|
@ -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$" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
public class Ausdruck {
|
||||
|
||||
public void ausgeben() {
|
||||
|
||||
|
||||
public static void main(String[] args) {
|
||||
int int1 = 1, int2 = 2, int3 = 3;
|
||||
double double1 = 3.0, double2 = 4.0;
|
||||
boolean boolean1 = true;
|
||||
|
@ -36,7 +38,7 @@ public class Ausdruck {
|
|||
System.out.println((int3 <= 3) && !(double2 <= 2.999999));
|
||||
|
||||
System.out.println(boolean1 = 7 > 6);
|
||||
System.out.println(int3 = int1 + int2 == 3);
|
||||
//System.out.println(int3 = int1 + int2 == 3);
|
||||
System.out.println((int3 = int2 - int1) == 1);
|
||||
|
||||
System.out.println(3 * 1000000);
|
||||
|
@ -47,8 +49,4 @@ public class Ausdruck {
|
|||
System.out.println(3 * 1000000000d);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
(new Ausdruck()).ausgeben();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue