Generation

generate functionFri, 07 Jul 2023

Calcular el máximo de 3 números

int max(int a, int b, int c) { int d; if(a>b && a>c) { d=a; } else if(b>a && b>c) { d=b; } else { d=c; } return d; }

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