commit 6f3446f45e7a2edd684438032a825be9de242d45 Author: Orlando Date: Thu Oct 26 15:47:14 2023 +0200 Prak Tag 1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/Prog3_A_Prak.iml b/Prog3_A_Prak.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Prog3_A_Prak.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..148a9e8 --- /dev/null +++ b/src/Main.java @@ -0,0 +1,17 @@ +// Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`, +// then press Enter. You can now see whitespace characters in your code. +public class Main { + public static void main(String[] args) { + // Press Alt+Eingabe with your caret at the highlighted text to see how + // IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + // Press Umschalt+F10 or click the green arrow button in the gutter to run the code. + for (int i = 1; i <= 5; i++) { + + // Press Umschalt+F9 to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing Strg+F8. + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/src/Prak1/Zahlenfilter.java b/src/Prak1/Zahlenfilter.java new file mode 100644 index 0000000..84f2501 --- /dev/null +++ b/src/Prak1/Zahlenfilter.java @@ -0,0 +1,32 @@ +package Prak1; + +public class Zahlenfilter { + + public static void main(String[] args){ + filter(); + } + + public static void filter(){ + int i; + int x; + for( i = 0; i <= 200; i++) { + if( i % 5 == 0 ){ + System.out.println( i + " ist durch 5 teilbar"); + } else{ + if(i % 10 == 9){ + System.out.println( i + " endet auf 9"); + } else{ + x = i + (i-1); + if( x % 3 == 0){ + System.out.println(i + " und " + (i-1) + " addiert ergeben "+ x + " und " + x + " ist durch 3 teilbar"); + } else{ + System.out.println(i); + } + } + } + + } + } + +} + diff --git a/src/Prak1/Zahlenfilter_save.java b/src/Prak1/Zahlenfilter_save.java new file mode 100644 index 0000000..1a4ee10 --- /dev/null +++ b/src/Prak1/Zahlenfilter_save.java @@ -0,0 +1,26 @@ +package Prak1; + +public class Zahlenfilter_save { + + public static void main(String[] args){ + int i; + int x; + for( i = 0; i <= 200; i++) { + if( i % 5 == 0 ){ + System.out.println( i + " ist durch 5 teilbar"); + } else{ + if(i % 10 == 9){ + System.out.println( i + " endet auf 9"); + } else{ + x = i + (i-1); + if( x % 3 == 0){ + System.out.println(i + " und " + (i-1) + " addiert ergeben "+ x + " und " + x + " ist durch 3 teilbar"); + } else{ + System.out.println(i); + } + } + } + + } + } +}