--- In [email protected], Pedro Izecksohn
<[EMAIL PROTECTED]> wrote:
>
> > i need help getting started in this program that
lets the user enter
> > four quarterly sales values for six divisions of
a company. Values are
> > to be stored in a two-dimensional array. The
program should display
> > the following data for each quarter:
> > 
> >   -A list of the sales figures by division
> >   -Each division's increase or decrease from the
previous quarter    
> >       (This will not be displayed for the first
quarter.)
> >   -The total sales for the quarter
> >   -The company's increase or decrease from the
previous quarter (This
> > will not be displayed for the first quarter.)
> >   -The average sales for all divisions that
quarter
> >   -The division with the highest sales for the
quarter
> 
>   Why don't you use some spreadsheet program?
> 
>   There are some tasks that are easier to do using
some spreadsheet than
> using the C programming language.
> 
> 


To help get you started.

#include <stdio.h>

int main()
{
    printf("This is the start of a program\n");
    return 0;
}

Ray

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to