- 1
The cost prize of n articles is the same as the selling prize of x articles.if the profit is p% then what is the value of x?
test case 1: 12.5 14.5 output the value of x is 10.92
5 Answers
0
That makes no sense.... what are 12.5 and 14.5 in the test case?
0
You've posted at least five basic questions in a short time. All of them with a single test case, and zero lines of code. Are you asking us to help you learn, or just to do your homework?
0
the first input is an float which corresponds to n the 2nd is an float which corresponds to p.the output shld have the float values are displayed correct to 2 decimal places.
0
n Ă cost = x Ă (cost Ă (1 + profit)) ==> x = n / ( 1 + profit )
You can check this using your values.
I will not post any code until you prove you made the least effort to solve it on your own...
0
thanks bogdan.....