0
Necesitó ayuda
Es en C# es sobre una prueba de.. tarjetas de paises
2 Réponses
+ 1
Clanssey Alexander Lara
You're a tour manager and need a program that will identify small countries.
A country is considered small if its population is under 10000 and its area is under 10000 hectares.
if ((population < 10000) && (area < 10000)){
}
The given code takes population and area from as input.
Task:
Complete the code to output "small country" if both conditions are met. Don't output anything otherwise.
Input Example
9955
7522
Output Example
small country
0
Clanssey Alexander Lara puedes agregar tu código como así
https://sololearn.com/compiler-playground/Wek0V1MyIR2r/?ref=app