Generation

generate functionThu, 13 Apr 2023

Una familia debe recibir un subsidio de $300.000 si tiene 3 o mas hijos o recibir un subsidio de $180.000 si tiene menos de 3 hijos.

int hijos = 3; if (hijos >= 3) { print("$300.000") } else if (hijos < 3) { print("$180.000") }

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