Abgabe_neu

Aufgabe_249.cpp

Committer:
gigo2191
Date:
2020-04-28
Revision:
1:0415fa5d95e4
Parent:
0:5cabd77ebde3

File content as of revision 1:0415fa5d95e4:

/******************************************************************************
 
C++ Kurs BULME 19/20 SM
Aufgane 249
Glücksspiel
Mario Neubauer
 
*******************************************************************************/
#include <stdio.h>
#include <iostream>
using namespace std;

int main()
{
    int Betrag;
    int kontostand = 10000;
    int zufall;
    int zahl;
    
    srand (time(NULL));
    
    
    while(kontostand > 0)
    {
    printf("Betrag eingeben:\n");
    scanf("%d", &Betrag);
    
    if(Betrag <= kontostand)
    {
    printf("Zahl eingeben:\n");
    scanf("%d", &zahl);
    
    if(zahl < 10)
    {
    zufall = rand() %10;
    printf("Eingegebene Zahl ist: %d, Zufallszahl ist: %d\n", zahl, zufall);
    kontostand = kontostand - Betrag;
    
    if(zahl == zufall)
    kontostand = kontostand + (Betrag*9);
    printf("Aktueller Kontostand: %d\n", kontostand);
    
    }
    else
    printf("falsche Eingabe\n");
    }
    else
    printf("Der Betrag it höher als der Kontostand\n");
    }
    return 0;
}