#include<iostream>#include<conio.h>using namespace std;int main(){float milkPrice,bredPrice,procent; cout<<"moloko = "; cin>>milkPrice; cout<<"xleb = "; cin>>bredPrice; cout<<"**********************************"<<endl; cout<<"podnyat ceny na "; cin>>procent; if (procent <= 0) { cout<<"plohoy procent"; _getch(); return 0; }else{ cout<<"stariye ceni:XLEb: "<<bredPrice<<" Moloco: "<<milkPrice<<endl; cout<<"**********************************"<<endl; cout<<"new ceni:XLEb: "<<(bredPrice*procent/100)+bredPrice<<" Moloco: "<<(milkPrice*procent/100)+milkPrice; } _getch();return 0;}