Generation

generate functionFri, 07 Jul 2023

Calcular el máximo de 2 números

public int Max(int a, int b){ if(a > b){ return a; } return b; } Max(5, 8)

Want to kickstart your project?Use the new AI Studio to create your code