Hallo, eigentlich müsste das richtig sein, aber diese Fehlermeldung => de/codegym/task/task02/task0216/Solution.java:24: error: illegal start of expression
public static main(String[] args) throws Exception{
weißt darauf hin, dass etwas mit der Main Methode und dem throws Exception nicht in Ordnung ist?
Hello, the answer should be correct, but the Compiler throws Error =>de/codegym/task/task02/task0216/Solution.java:24: error: illegal start of expression
public static main(String[] args) throws Exception{
Something is not okay with the Mainmethod and the throws Exception?
package de.codegym.task.task02.task0216;
/*
Die kleinste aus drei Zahlen
*/
public class Solution {
public static int min(int a, int b, int c) {
int minimum;
if (a <= b && a <= c){
minimum = a;
}
else if (b <= a && b <= c){
minimum = b;
}
else {
minimum = c;
}
return minimum;
public static main(String[] args) throws Exception{
System.out.println(min(1, 2, 3));
System.out.println(min(-1, -2, -3));
System.out.println(min(3, 5, 3));
System.out.println(min(5, 5, 10));
}
}