Generation

generate functionWed, 31 Jan 2024

Dado 5 números enteros, determine cual es el mayor.

t max(int a, int b, int c, int d, int e) { int max = a; if (b > max) max = b; if (c > max) max = c; if (d > max) max = d; if (e > max) max = e; return max; } int main() { int n,

Questions about programming?Chat with your personal AI assistant