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

11
2/BruttoNetto.~ava Normal file
View File

@@ -0,0 +1,11 @@
public class BruttoNetto {
public static void main(String args[]) {
int gehalt = 3000;
double steuer = 19.0;
steuer = steuer * .01;
System.out.println("Steuer: " + steuer + " imGEld: " + ((double)gehalt * steuer ));
System.out.println("Betrag: " + (gehalt - ((double)gehalt * steuer )));
}
}