This commit is contained in:
Mykola Fesenko
2025-07-29 08:08:23 +02:00
commit 899a05907b
355 changed files with 11002 additions and 0 deletions

12
2/Steigung.java Normal file
View File

@@ -0,0 +1,12 @@
public class Steigung {
public static void main(String args[]) {
double x1 = 4;
double y1 = 2;
double x2 = 6;
double y2 = 7;
System.out.println("Steigung: " + ((y2 - y1)/(x2 - x1)));
}
}