(l) If the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one item.

Let Us C by Yashwant Kanetkar

 

Solution By Muhammad Kaleem UIlah



                                                                  Exercise Questions 
[H] Write C programs for the following:

(l) If the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one item.

#include <stdio.h>

#include <stdlib.h>

 

int main()

{

    float sellingprice,profit,costperitem;

    printf("\n\t\t Enter the total selling Price = ");

    scanf("%f",&sellingprice);

    printf("\n\t\t Enter the total profit = ");

    scanf("%f",&profit);

    costperitem=(sellingprice-profit)/15;

    printf("\n\t\t Cost price of one item = %f",costperitem);

    return 0;

}


Comments

Popular posts from this blog

EXERCISE 01 Complete Solved LET US C by Yashwant Kanetkar

(k) A cashier has currency notes of denominations 10, 50 and 100. If the amount to be withdrawn is input through the keyboard in hundreds, find the total number of currency notes of each denomination the cashier will have to give to the withdrawer.

(g) If a five-digit number is input through the keyboard, write a program to calculate the sum of its digits. (Hint: Use the modulus operator ‘%’)