#include <iostream>
using namespace std;
int main()
{
int budzet, cena;
cout << "Podaj budzet: ";
cin >> budzet;
while (budzet!=0)
{
cout << "Podaj cene upominku: ";
cin >> cena;
if (budzet-cena>=0) budzet=budzet-cena;
else cout << "Masz za malo srodkow, Podaj nizsza cene" << endl;
}
return 0;
}
________________
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int liczba;
cout << "Podaj liczbe: ";
cin >> liczba;
cout << "Wynik to: " << int(sqrt(liczba));
return 0;
}