Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #include "fcpp.hh"
-
- int konto; // die GLOBALE Variable
-
- void einrichten (int betrag)
- {
- konto = betrag;
- }
-
- int kontostand ()
- {
- return konto;
- }
-
- int abheben (int betrag)
- {
- konto = konto-betrag;
- return konto;
- }
-
- int main ()
- {
- einrichten(100);
- print(abheben(25));
- print(abheben(25));
- print(abheben(25));
- }
|