SAE24_2022/resources/scripts/ex1-1.sce
Lyanis SOUIDI 0c458c5329
[Ex1 - Q1] Modification de la précision
Affichage de 2 chiffres après la virgule pour la densité mondiale moyenne et modification du README
2023-05-18 17:32:05 +02:00

8 lines
338 B
Scilab

data = csvRead("resources/data/data.csv");
surface = sum(data(:, 2)*1000);
population = sum(data(:, 3)*1000000);
densite = population / surface;
mprintf("Surface terrestre mondiale : %d km²\n", surface);
mprintf("Nombre d''habitants mondial : %.0f habitants\n", population);
mprintf("Densité moyenne : %.2f habitants/km²\n", densite);