felipeluiz Posted May 3, 2015 Report Share Posted May 3, 2015 #include<iostream> #include<cmath> using namespace std; int main() { float x,y,preço; cout<<"digite o valor do produto: "; cin>>x; cout<<"digite a venda mensal media: "; cin>>y; if((y<500)||(x<30)) { preço=x+(x*0.1); cout<<"o novo valor do produto e: "<<preço<<endl; } if((y>=500&&y<1200)||(x>=30&&x<80)) {preço=x+(x*0.15); cout<<"o novo preço e: "<<preço<<endl; } if((y>=1200)||(x>=80)) {preço=x-(x*0.2); cout<<"o valor do produto foi reduzido para: "<<preço<<endl; } system("pause"); } Quote Link to comment Share on other sites More sharing options...
0 vangodp Posted May 3, 2015 Report Share Posted May 3, 2015 Acho que é ( x > 30 ) || ( y < 500 ). E outra coisa que você não pode fazer é declarar variavel com 'Ç'. A variavel preço você pode definir como valor. Quote Link to comment Share on other sites More sharing options...
Question
felipeluiz
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.