How to find total and average price with loops?

CODE



How to find total and average price with loops?
int main()
{
    int n,total=0,pr,avr,i;
    printf("\n enter the number of product:");
    scanf("%d",&n);
    for(i=1;i<=n;i++)
    {
        printf("\n enter the price of %d product:",i);
        scanf("%d",&pr);
        total+=pr;
    }
    avr=total/n;
    printf("\n Total price=%d",total);
    printf("\n Average=%d",avr);
}


Output:
enter the number of product: 3

 enter the price of 1 product:5789

 enter the price of 2 product:96579

 enter the price of 3 product:5567

 Total price=107935

 Average=35978




How to find total and average price with loops? How to find total and average price with loops? Reviewed by Unknown on December 15, 2018 Rating: 5

No comments:

If you have any doubt or query ,comment below:

Programming copyright © 2018-19. Powered by Blogger.