#include#includeusing namespace std;
int main(){float milkPrice,bredPrice,procent;cout<<"moloko = ";cin>>milkPrice;cout<<"\nxleb = ";cin>>bredPrice;cout<<"**********************************"<<endl;cout<<"podnyat ceny na ";cin>>procent;if (procent <= 0){ cout<<"plohoy procent"; _getch(); return 0;}else{ cout<<"stariye ceni:\nXLEb: "<<bredPrice<<" \nMoloco: "<<milkPrice<<endl; cout<<"**********************************"<<endl; cout<<"new ceni:\nXLEb: "<<(bredPrice*procent/100)+bredPrice<<" \nMoloco: "<<(milkPrice*procent/100)+milkPrice;}_getch();return 0;}<br>