Computer Science, asked by khatiyandk, 5 hours ago

Q2. Write a program to find the profit
percent when cost price is 12005.50 and
selling price is 13000.​

Answers

Answered by rishianjugupta
2

Answer:

994.50

Explanation:

13000-12005.50

Answered by HarishAS
0

\texttt{I am writing the program for this question in python} \\ \\ \underline{\texttt{Program } }: \\ \\ \texttt{c = 12005.50  \ \ \ \ \ \ \ \ \  \ \# Cost price} \\ \\ \texttt{s = 13000.00  \ \ \ \ \ \ \ \ \  \ \# Selling price}  \\ \\ \texttt{pp = ((s-c)/c)* 100 \ \ \ \# Profit percentage} \\ \\ \texttt{print('Profit percentage = ' , pp , '\%') }

\underline{\tt{Out put}} :\\ \\ \texttt{Profit Percentage = 8.283703302652950 \%}

Hope this helps : )

Similar questions