[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


write a program to read 'n' values & calculate avg. of...

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)

Question by rozy
Submitted on 12/20/2003
Related FAQ: LEARN C/C++ TODAY (A list of resources/tutorials)
Rating: Not yet rated Rate this question: Vote
write a program to read 'n' values & calculate avg. of positive values! (write it with for,while and do while) in three  times!!


Answer by naidu_trk
Submitted on 12/29/2003
Rating: Not yet rated Rate this answer: Vote
dont submit school assignments faqs are not for that purpose its for more than that

 

Answer by dasss
Submitted on 2/13/2004
Rating: Not yet rated Rate this answer: Vote
i don't know

 

Answer by Yogita daga(dagayogita@sify.com)
Submitted on 3/15/2005
Rating: Not yet rated Rate this answer: Vote
#include<stdio.h>
void main()
{
   int sum=0,count=0,i,n;
   printf("Enter No of values to be entered");
   scanf("%d",&n);
   for(i=0;i<n;i++)
   {
      printf("Enter No");
      scanf("%d",&temp);
      if(temp>0)
      {
         sum=sum+temp;
         count++;   
      }   
   }
   printf("Average of positive value is %f",(float)sum/count);/*Type casting of integer values to float in order to get result in float*/
}
/* This is the logic which can be implemented in do while and while loop*/

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.