This commit is contained in:
2024-11-26 20:38:50 +01:00
parent 582bc26ad7
commit b1d4730e60
13 changed files with 1308 additions and 0 deletions

20
TP7/Pays.h Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include <string>
#include <fstream>
#include "getio.h"
using namespace std;
class Pays {
string Region; // (Localisation) clé
string Nom; // (Nom)
float Population;
float Area; // (Superficie)
public:
void saisie(ifstream& s);
void affichage();
string key() { return Region; };
};