Compare commits

..

No commits in common. "main" and "featureAddition" have entirely different histories.

1 changed files with 1 additions and 4 deletions

View File

@ -3,16 +3,13 @@ package de.hs_mannheim.informatik.gitdemo;
public class Main {
public static void main(String[] args) {
System.out.println("Hallo Welt! Willkommen an der HS Mannheim.");
System.out.println("Hallo Welt!");
Main m = new Main();
System.out.println();
System.out.printf("Die Summe von %d + % d = %d", 3, 8, m.add(3, 8));
System.out.printf("Es geht noch besser: %d + %d + %d = %d", 2, 5, 9, m.add(2, 5, 9));
int[] arr = {1, 2, 3, 4};
System.out.printf("Da geht noch mehr: %d + %d + %d = %d", arr, m.add(arr));
}
public int add(int... numbers) {