Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Brauche Hilfe in C++

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
26.06.2012, 23:42 Uhr
Wellensittich



Ich frage mal folgendes dann-
Ich habe folgende Dateien:

Unisex.cpp

C++:
#include <iostream>
using namespace std;
#include "Unisex.h"

// Berechnung der BMI. unisex

float CUnisex::bmiBerechnung()
{    

    return 10000*(gewicht / (groesse * groesse));
    
}



Unisex.h

C++:
#include <string>
using namespace std;

class CUnisex
{
protected:
        string name;
        float alter;
        float gewicht;
        float groesse;
        float aktivfaktor;


public:
        
        float bmiBerechnung();
            
};


gui.cpp

C++:
#include <iostream>
#include <string>
#include "Unisex.h"
#include "gui.h"

using namespace std;

void main ()
{
        CUnisex n;
    n.bmiBerechnung();
    system("Pause");
}


gui.h

C++:
class CGui
{
public:
    void application();
};



Wie mache ich da jetzt eine Eingabe für Gewicht und Größe? Und wo genau findet der CIN und COUT statt?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
27.06.2012, 12:48 Uhr
~f.-th.
Gast


Noch gar nicht
Da fehlt noch der entsprechende Quelltextteil
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
27.06.2012, 14:29 Uhr
ao

(Operator)


Ich würde das hier machen:

C++:
void main ()
{
    CUnisex n;
    
    // User-Eingaben holen und das CUnisex-Objekt füttern
    // (über API-Methoden, die noch zu definieren sind)

    float bmi = n.bmiBerechnung();

    std::cout << "BMI ist " << bmi << std::endl;
    system("Pause");
}

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: