files added

This commit is contained in:
2020-10-30 17:59:18 +01:00
parent 47b69ca811
commit 3edae31699
47 changed files with 439 additions and 0 deletions
Binary file not shown.
+17
View File
@@ -0,0 +1,17 @@
public class Verdienstrechner{
public static void main(String[] args){
float stunden = 7;
float stundenlohn = 12.0f;
float verdienst = stunden*stundenlohn;
System.out.print("Stundenlohn: ");
System.out.println(stundenlohn);
System.out.println("Stundenlohn: " + stundenlohn);
System.out.println("Stunden insgesamt: " + stunden);
System.out.println("Ich habe " + verdienst + " verdient.");
}
}