CMSC 104, Spring 2007

Homework 3

Your First C Program



Out:Thursday, March 15
Due:Tuesday, March 27, before 11:59 p.m.

Note: No late projects will be accepted.


The Objective

The Task

Sample Run

Submitting the Program

You do not have to turn in the sheet you used to fill in the blanks. However, you do have to submit your source code. Your C source code file MUST be called hw3.c. To submit your project, type the following at the Unix prompt. Note that the project name starts with uppercase 'H'.
linux3[63]% submit cs104 Hw3 hw3.c
    
To verify that your project was submitted, you can execute the following command at the Unix prompt. It will show the file that you submitted in a format similar to the Unix 'ls' command.
linux3[64]% submitls cs104 Hw3 
    

The Program

/**************************************************************
** Filename:     hw3.c
** Author:       put your name here
** Date Written: 3/15/07
** Section:      put your section here
** E-mail:       put your umbc e-mail address here
** Description:  This program reads in two numbers from 
**               the user and performs some statistical
**               analysis on the numbers.
**************************************************************/
#include _____________

int main()
{

   int _______ = 0;        /* The first number read in from the user  */
   int _______ = 0;        /* The second number read in from the user */
   float average = 0.0;    /* The average of both numbers */

   /* Read in an integer from the user */
   printf("Please enter an integer: ");
   scanf("______", ________);

   /* Read in another integer from the user */
   printf("Please enter another integer: ");
   scanf("______", ________);

   /* Determine and display which number is larger */
   if( ________ > _______ )
   {
      printf("%d is larger than %d.\n", _________, __________);
   }
   else if ( ___________ > ____________)
   {
      printf("%d is larger than %d.\n", _________, __________);
   }
   else
   {
      printf("%d and %d are equal. \n", _________, __________);    
 
   }

   /* Calculate and display the average */
   average  = ___________________ / 2.0 ;
   printf("The average of %d and %d is _______.\n", num1, num2, average);
   
   return _________;

}