Generation

generate functionThu, 20 Apr 2023

Leer un número y escribir el valor absoluto del mismo

int abs(int a) { if (a < 0) return -a; return a; }

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