Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
alguém pode me ajudar?
+1
vote
asked
Mar 19, 2020
by
anonymous
Construa um programa que aplique um desconto de 25% sobre o preço de um produto recebido como entrada e imprima o valor resultante. Use o valor 150.00 como entrada.
favor-ajuda
por
favor
ajude
Please
log in
or register to answer this question.
1 Answer
0
votes
answered
May 2, 2021
by
Han-ma-bookie
(
360
points)
#include <iostream>
using namespace std;
int main () {
double valor, desconto;
cout << "Digite o valor: ";
cin >> valor;
desconto = valor - ((valor * 25) / 100);
cout << "\n";
cout << "O valor com desconto de 25%: " << desconto << endl;
return 0;
}
commented
May 3, 2021
by
Peter Minarik
(
101,420
points)
just a small note:
You did not count the discount (nor stored it in the variable `discount`). What you calculated and stored (and printed to the user) is the discounted value. Your calculation is correct, but your naming of things is not.
discounted value = original value - discount
commented
May 4, 2021
by
Han-ma-bookie
(
360
points)
I wanted to avoid declaring more variables, something leaner, and that's why I used the nomenclature that way. My bad
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...