This commit is contained in:
Matti 2024-04-16 11:11:27 +02:00
parent 5da2754246
commit 7046d81b16

View File

@ -6,7 +6,7 @@ public class aufg3 {
int b = 4;
int c = 5;
boolean pythagoras_happy = (a*a +b*b == c*c);
boolean pythagoras_happy = (a*a + b*b == c*c);
System.out.println(pythagoras_happy);
}