Steve Summit C notes , exercise



this is the programme i created, for exercise 2, assignment 3 at

http://www.eskimo.com/~scs/cclass/asgn.beg/PS2.html

it runs fine. i wanted to know if it needs any improvement:

----------------- PROGRAMME ----------------------------
/* Steve Summit's C programming

Section 3 :: exercise 2

STATEMENT:
Write a program to compute the average of the ten numbers 1, 4,
9, ..., 81, 100,
that is, the average of the squares of the numbers from 1 to 10. (This
will be a
simple modification of Exercise 3 from last week: instead of printing
each square
as it is computed, add it in to a variable sum which keeps track of
the sum of all
the squares, and then at the end, divide the sum variable by the
number of numbers summed.)

*/

#include <stdio.h>

#define DIVISOR 10

int main()
{
int i;
double sum;

sum = 0;
for(i = 0; i <= 10; ++i)
sum += i*i;

printf("the average is: %.1f\n", sum / DIVISOR);

return 0;

}

----------------------- OUTPUT ----------------------
[arch@voodo steve-summit]$ gcc -std=c99 -pedantic -Wall -Wextra
assign-3_ex-2.c
[arch@voodo steve-summit]$ ./a.out
the average is: 38.5
[arch@voodo steve-summit]$

.



Relevant Pages

  • Re: Steve Summit C notes , exercise
    ... /* Steve Summit's C programming ... the average of the squares of the numbers from 1 to 10. ... simple modification of Exercise 3 from last week: ... the sum of all ...
    (comp.lang.c)
  • Re: Steve Summit C notes , exercise
    ... the average of the squares of the numbers from 1 to 10. ... simple modification of Exercise 3 from last week: ... the sum of all ... int main ...
    (comp.lang.c)
  • Re: Steve Summit C notes , exercise
    ... the average of the squares of the numbers from 1 to 10. ... simple modification of Exercise 3 from last week: ... the sum of all ... int main ...
    (comp.lang.c)
  • Re: How to measure speed
    ... ""Exercise 1.3. ... arguments and returns the sum of the squares of the two larger ... (sum-of-squares b c) ...
    (comp.lang.scheme)
  • Re: Comments needed for attempted proof of a simple integral
    ... > X" problems aren't so difficult because standard math education has been ... > about solving problems of that nature and I can usually verify answers ... > exercise for me to verify, and there are a lot of those in this book. ... >> My thinking is to translate the integral into a sum, ...
    (sci.math)