0

NecesitĂł ayuda

Es en C# es sobre una prueba de.. tarjetas de paises

15th Aug 2025, 3:33 AM
Clanssey Alexander Lara
2 Answers
+ 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
15th Aug 2025, 4:24 AM
BroFar
BroFar - avatar
15th Aug 2025, 6:02 AM
Ausgrindtube
Ausgrindtube - avatar