This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
float porcentaje_covid(float casos_positivos, float casos_totales) { | |
return casos_positivos * 100 / casos_totales; | |
} | |
int menor_comparacion(float temperatura, float menor_temperatura) { | |
if (temperatura <= menor_temperatura) { | |
return 2; |
OlderNewer