From c03543b334552dd456fd8f82876a9a55698a5ed4 Mon Sep 17 00:00:00 2001 From: DH10RBH Date: Wed, 17 Apr 2024 11:58:05 +0200 Subject: [PATCH] v1 --- Kontrollstrukturen/afg4 zinsen/.gitignore | 29 +++++++++++++ .../afg4 zinsen/.idea/.gitignore | 8 ++++ Kontrollstrukturen/afg4 zinsen/.idea/misc.xml | 6 +++ .../afg4 zinsen/.idea/modules.xml | 8 ++++ Kontrollstrukturen/afg4 zinsen/.idea/vcs.xml | 6 +++ .../afg4 zinsen/afg4 zinsen.iml | 11 +++++ Kontrollstrukturen/afg4 zinsen/src/Main.java | 43 +++++++++++++++++++ 7 files changed, 111 insertions(+) create mode 100644 Kontrollstrukturen/afg4 zinsen/.gitignore create mode 100644 Kontrollstrukturen/afg4 zinsen/.idea/.gitignore create mode 100644 Kontrollstrukturen/afg4 zinsen/.idea/misc.xml create mode 100644 Kontrollstrukturen/afg4 zinsen/.idea/modules.xml create mode 100644 Kontrollstrukturen/afg4 zinsen/.idea/vcs.xml create mode 100644 Kontrollstrukturen/afg4 zinsen/afg4 zinsen.iml create mode 100644 Kontrollstrukturen/afg4 zinsen/src/Main.java diff --git a/Kontrollstrukturen/afg4 zinsen/.gitignore b/Kontrollstrukturen/afg4 zinsen/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/.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/Kontrollstrukturen/afg4 zinsen/.idea/.gitignore b/Kontrollstrukturen/afg4 zinsen/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/.idea/.gitignore @@ -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 diff --git a/Kontrollstrukturen/afg4 zinsen/.idea/misc.xml b/Kontrollstrukturen/afg4 zinsen/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Kontrollstrukturen/afg4 zinsen/.idea/modules.xml b/Kontrollstrukturen/afg4 zinsen/.idea/modules.xml new file mode 100644 index 0000000..29ffb71 --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Kontrollstrukturen/afg4 zinsen/.idea/vcs.xml b/Kontrollstrukturen/afg4 zinsen/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Kontrollstrukturen/afg4 zinsen/afg4 zinsen.iml b/Kontrollstrukturen/afg4 zinsen/afg4 zinsen.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/afg4 zinsen.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Kontrollstrukturen/afg4 zinsen/src/Main.java b/Kontrollstrukturen/afg4 zinsen/src/Main.java new file mode 100644 index 0000000..45d163d --- /dev/null +++ b/Kontrollstrukturen/afg4 zinsen/src/Main.java @@ -0,0 +1,43 @@ +public class Main { + public static void main(String[] args) { + + float startwert = 23550.5F; + int laufzeit = 10; + + float zinssatz1, zinssatz2, zinssatz3; + zinssatz1 = 2.3F; + zinssatz2 = 0.5F; + zinssatz3 = 1.0F; + + float haben1 = startwert; + float haben2 = startwert; + float haben3 = startwert; + + for (int i=1; i <= laufzeit; i++){ + + haben1 = (haben1 + haben1*(zinssatz1/100)); + System.out.println("Nach " + i + " Jahren beträgt das Haben mit Zinssatz1: " + haben1 + " Euro."); + + } + System.out.println("=============================================="); + + for (int i=1; i <= laufzeit; i++){ + + haben2 = (haben2 + haben2*(zinssatz2/100)); + System.out.println("Nach " + i + " Jahren beträgt das Haben mit Zinssatz2: " + haben2 + " Euro."); + + } + System.out.println("=============================================="); + + for (int i=1; i <= laufzeit; i++){ + + haben3 = (haben3 + haben3*(zinssatz3/100)); + System.out.println("Nach " + i + " Jahren beträgt das Haben mit Zinssatz3: " + haben3 + " Euro."); + +} + + + + + } +} \ No newline at end of file