Jose Velasquez

Generation

generate functionWed, 29 Mar 2023

escribe un programa que lea cuatro números y determine y determine cual de ellos es el mayor

int mayor(int a, int b, int c, int d){ int may; may=a; if (b>may) may=b; if (c>may) may=c; if (d>may) may=d; return may; }

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