

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find cost price from given selling price and profit or loss percentage in C++
Consider we have the selling price, and percentage of profit or loss is given. We have to find the cost price of the product. The formula is like below −
$$Cost \: Price = \frac{Sell Price * 100}{100 + Percentage \: Profit}$$
$$Cost \: Price = \frac{Sell price *100}{100 + percentage\:loss}$$
Example
#include<iostream> using namespace std; float priceWhenProfit(int sellPrice, int profit) { return (sellPrice * 100.0) / (100 + profit); } float priceWhenLoss(int sellPrice, int loss) { return (sellPrice * 100.0) / (100 - loss); } int main() { int SP, profit, loss; SP = 1020; profit = 20; cout << "Cost Price When Profit: " << priceWhenProfit(SP, profit) << endl; SP = 900; loss = 10; cout << "Cost Price When loss: " << priceWhenLoss(SP, loss) << endl; }
Output
Cost Price When Profit: 850 Cost Price When loss: 1000
- Related Questions & Answers
- Find Selling Price from given Profit Percentage and Cost in C++
- Differentiate between price, value and cost
- Compare bid price and offer price
- C++ Program to find winner and final price in a second price auction event
- What is difference between profit and loss account and profit and loss appropriate account?
- C++ program to calculate Profit Or Loss
- Profit and loss Problems using C
- Program to find maximum profit we can make by holding and selling profit in Python
- Compare balance sheet and profit and loss account
- C++ Program to find out the total price
- Write a C program to find out profit or loss in buying an article
- Find average of corresponding records (Product Price) from duplicate product ids in MYSQL
- Maximum profit after buying and selling the stocks in C++
- The 5 Best Price Tracking Tools
- Sorting an array by price in JavaScript
Advertisements