👤

C++ Czy ktos pomoze dokonczyc ten program (algorytm zachłanny wydawania reszty)

#include

using namespace std;

const int nominaly[] = {100, 50, 20, 10, 5, 2, 1); const int 1 nominalow = 7;

while (reszta > 0 && aktualny_nominal < 1_nominalow)

while (aktualny_nominal < 1 nominalow && reszta < nominaly [aktualny_nominal])

aktualny_nominal++;

if (aktualny_nominal

< 1_nominalow &&

reszta

>= nominaly [aktualny_nominal])

int 1_banknotow= reszta / nominaly [aktualny_nominal];

cout << 1 banknotow << " x " << nominaly [aktualny_nominal] << " z1" << endl;

reszta -= 1 banknotow* nominaly [aktualny_nominal];


C Czy Ktos Pomoze Dokonczyc Ten Program Algorytm Zachłanny Wydawania Resztyinclude Using Namespace Stdconst Int Nominaly 100 50 20 10 5 2 1 Const Int 1 Nominalo class=

Odpowiedź :

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