#include <iostream>
 
using namespace std;
 
class KFZ
{
    public:
 
    // Konstruktor
 
    KFZ(int nTankgr,double nVerbrauch100Km,double nTankinhalt,double nKmStand,double nGewicht):
    Tankgr(nTankgr), Verbrauch100Km(nVerbrauch100Km), Tankinhalt(nTankinhalt), KmStand(nKmStand), Gewicht(nGewicht) {}
    // Alles Zeigen
 
    void Show();
 
    private:
 
    int Tankgr;
    double Verbrauch100Km;
    double Tankinhalt;
    double KmStand;
    double Gewicht;
 
};
 
 
//Show Funktion
 
void KFZ::Show()
{
    cout<< "Tankgroeße : "<< Tankgr <<endl;
    cout<< "Verbrauch auf 100 Km : "<< Verbrauch100Km <<endl;
    cout<< "Tankinhalt zurzeit : "<< Tankinhalt <<endl;
    cout<< "Aktueller Km Stand : "<< KmStand <<endl;
    cout<< "Zulässiges Gewicht : "<< Gewicht <<endl;
 
}
 
 
int main()
{
    KFZ Audi(50,8.7,3.4,5.4,1.0);
 
    Audi.Show();
 
    return 0;
}