Odpowiedź:
#include <iostream>
#include <ctime>
#include <windows.h>
using namespace std;
int main()
{
srand( time( NULL ) );
float kwota=1;
for(int i=0;i<30;i++){
int czy_orzel=rand()%2;
if(czy_orzel) kwota*=2;
else kwota/=2;
//cout<<czy_orzel<<endl;
}
cout<<"Franek zebral: "<<kwota<<" zl";
return 0;
}
Wyjaśnienie: