Computer Science, asked by riyakhandeshe, 17 hours ago

Write a program to find the cost price if the selling price is Rs 2500 and the profit made is Rs 250​

Answers

Answered by dearcomradedk
1

Explanation:

#include<iostream>

using namespace std;

int main(){

int cost_price, sp = 2500, profit = 250;

cost_price = sp - profit;

cout<<" the cost price is " << cost_price<<endl;

return 0;

}

Hope it helps <3

Similar questions