O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
price=float(input("Enter Price : ")) dp=float(input("Enter discount % : ")) discount=price*dp/100 sp=price-discount print("Cost Price : ",price) print("Discount: ",discount) print("Selling Price : ",sp)
▶ Run Code
🖥 Output: