[Ex1 - Q1] Modification de la précision

Affichage de 2 chiffres après la virgule pour la densité mondiale moyenne et modification du README
This commit is contained in:
Lyanis SOUIDI 2023-05-18 17:30:25 +02:00
parent 5f5a41ff00
commit 0c458c5329
Signed by: Lyanis SOUIDI
GPG Key ID: 251ADD56CFE6A854
2 changed files with 4 additions and 5 deletions

View File

@ -4,14 +4,13 @@
### Question 1
> Calculer la surface terrestre mondiale, le nombre dhabitants mondial et la densité moyenne dhabitants au km2.
[Script Scilab](resources/scripts/ex1-1.sce) :
**[Script Scilab](resources/scripts/ex1-1.sce) :**
```scilab
data = csvRead("resources/data/data.csv");
surface = sum(data(:, 2)*1000);
population = sum(data(:, 3)*1000000);
densite = population / surface;
```
Résultat :
**Résultat :**
- Surface terrestre mondiale : 133 950 670 km2
- Nombre d'habitants mondial : 7 534 720 000 habitants
- Densité moyenne : 56,25 habitants/km²
- Densité moyenne : 56.25 habitants/km²

View File

@ -4,4 +4,4 @@ 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 : %.0f habitants/km²\n", densite);
mprintf("Densité moyenne : %.2f habitants/km²\n", densite);