if the cost price of an item is input through the keyboard write a program to find the cost price of 24 items
Answers
Answered by
0
Answer:
I don't understand your question
sorry can't answer
Answered by
3
Answer:
JAVA :-
Explanation:
import java.util.*;
class Brainly
{
static void main()
{
Scanner sc=new Scanner(System.in);
float tsp,tp,tcp,cp;
System.out.println(“Enter the total selling price:”);
tsp=sc.nextFloat();
System.out.println(“Enter the total profit:”);
tp=sc.nextFloat();
cp=tcp/15;
System.out.println(“Cost Price of one item:”+cp);
}
}
Similar questions