Odpowiedź:
#include <iostream>
using namespace std;
int main() {
const int nominaly[] = {100, 50, 20, 10, 5, 2, 1};
const int l_nominalow = 7;
int reszta;
cout << "Podaj ile chcesz miec reszty\n";
cin >> reszta;
int aktualny_nominal = 0;
while (reszta > 0 && aktualny_nominal < l_nominalow) {
while (aktualny_nominal < l_nominalow && reszta < nominaly[aktualny_nominal])
aktualny_nominal++;
if (aktualny_nominal < l_nominalow && reszta >= nominaly[aktualny_nominal]) {
int l_banknotow = reszta / nominaly[aktualny_nominal];
cout << l_banknotow << " x " << nominaly[aktualny_nominal] << " z1" <<
endl;
reszta -=
l_banknotow * nominaly[aktualny_nominal];
}
}
return 0;
}
Wyjaśnienie:
Działa poprawnie i jak chcesz, żebym pomagał w Twoich zadaniach to daj mi naj, bo już tracę cierpliwość do Ciebie