This commit is contained in:
2024-09-27 10:23:15 +02:00
parent 4908d26105
commit c556d9d901
10 changed files with 81 additions and 1 deletions

View File

@ -0,0 +1,20 @@
package com.oop;
public class Program {
static double max(double a, double b) {
if(a > b) {
return a;
}
else {
return b;
}
}
static int max(int a, int b) {
if(a > b) {
return a;
}
else {
return b;
}
}
}