CPE 101

Winter 2008

Program 1

 

Due Date

 

Friday, January 8, Midnight (Friday night / Saturday morning)

 

Errata:

 

Objectives

 

 

Required File Header

 

All students are required to have the following header comment at the top of their source file.  Note that the stuff to the right of the colon in bold is information for an imaginary example student.  (Your header comment is not expected to have bold text.)


/* Project 1

 *
 * Name: Jane Codewell
 * Instructor: J. Hatalsky
 * Section: 17

 */

Additional Resources

 

None

 

Problem Description

 

Transported back in time (with your computer) you are in charge of harbor defenses for your city. Using the recently developed length standard, the meter, (Paris Academy of Science, 1791) the cannon master wants to know if a shot fired at a given velocity from his cliff-mounted cannon will hit an enemy ship entering the harbor.  In addition to the velocity, he gives you the height of the cliff, the distance from the ship, and the width of the ship.  You decide to amaze the generals by developing a program to solve the problem.

 

You can assume that the cannon is mounted horizontally.  The ship distance is given from the end of the cannon to the middle of the ship.

 

A diagram of the problem:

 

To make the problem easier choose down for the positive x direction and to the right for the positive y direction.  The coordinate system: 

 

 

To determine the distance of the shot you must determine how long it takes the cannon ball to fall from the height of the cliff.  The initial downward velocity is zero.  Use 9.8m/s to represent gravity.  

 

Then,

distance of the shot = velocity * time.

 

Sample Runs

 

Note 1: These are sample runs - many other results are possible with many different inputs - be sure to read the specifications carefully for details.

 

Note 2: All user input is bold in the sample runs for clarity only - your program is not expected to behave this way.

 

Note 3:  The output to the right of the ":" (if not user-input which is bold) is a combination of calculated values and hard-coded text.

 

Sample Run 1

 

Enter the height of the cliff (meters): 50
Enter the distance of the ship from the cliff (meters): 180
Enter the width of the ship (meters): 15
Enter the velocity of the cannon ball (meters/second): 55
Distance of ball: 175.691055 meters
Direct hit!!!

 

Sample Run 2

Enter the height of the cliff (meters): 200
Enter the distance of the ship from the cliff (meters): 100
Enter the width of the ship (meters): 20
Enter the velocity of the cannon ball (meters/second): 50

Distance of ball: 319.438282 meters
You missed!

 

 

Suggestions

 

  1. Read the program specifications fully before beginning to write code.  Ask your instructor for any necessary clarifications as early as possible.

 

 

Specification

  1. Your program must compile without error or warning using the gcc compiler and the -Wall -ansi -pedantic compiler flags.

  2. Your program prompts must match the specified prompts exactly (spelling, capitalization, et cetera). We will ignore minor white space differences in your prompts (3 spaces instead of 2, for example).

  3. Your program outputs must match the specified outputs exactly (spelling, capitalization, et cetera). We will ignore minor white space differences in your output (3 spaces instead of 2, for example).

  4. You may assume all inputs will be greater than zero.

  5. All numerical inputs must support any real number as supported by the C double type for the gcc compiler on hornet.

  6. All internal calculations must maintains as much precision as is supported by the C double type in the gcc compiler on hornet.

  7. All numerical outputs should be done using the %f flag - no special formatting required.

  8. Your program will be tested with input you have not seen and must work correctly for any valid cliff height, ship specifications, and cannon ball velocity within the limits of the C double type in the gcc compiler on hornet.

  9. Implement your solution in a file called cannon.c.

  10. Define a constant in your source file, as shown below, after any #include preprocessor commands, for GRAVITY and use it in any and all calculations that require GRAVITY:

#define GRAVITY 9.8

 

  1. Use the formula in the Problem Description to calculate the distance of the cannon ball shot.

  2. Use the sqrt function in the math library to do the square root calculation.  You will need to #include <math.h>. Furthermore, you must use the -lm flag when compiling your program:

gcc -lm -Wall -ansi -pedantic cannon.c

 

(Note: That is an 'l', as in the letter after 'k', not a one.)

  1. You are not required to write your own functions for this program.  However you may use them if you like.

  2. After displaying the distance of the shot, display "Direct hit!!!" if the shot hits the ship and "You missed!" if the shot does not hit the ship.  (A 'hit' is any cannon shot that would land a cannon ball on the ship's deck.  Shots that would hit the ship on the side or in the masts are considered a miss.)

 

Testing

    

Be sure to test your program thoroughly. You should come up with as many different combinations of valid input and verify that your program works. Here are some example test cases and their corresponding output to get you started.

 

Test Input:

50, 180, 15, 55
200, 100, 20, 50
100, 90, 5, 20
100, 90, 5, 19
200.53, 4500.456, 100.2222, 700.333
0, 0, 0.000001, 0


Correct Output:
175.691055 hit
319.438282 miss
90.350790 hit
85.833251 miss
4480.187891 hit
0.000000 hit

 

 

Handing in Your Source Electronically...

 

  1. If necessary, move the cannon.c to your vogon account using scp(1).

 

  1. Log on to vogon.  Log on directly if you are in the lab and open up a terminal window.  Log on using your favorite shell program, if not using a lab computer.

 

  1. Change directory (cd-command) to the directory containing the file(s) to hand in.

 

  1. Be sure to compile and test your code on vogon using the required compiler flags one last time just before turning the files in.

 

  1. Use the following handin command being sure to replace the xx with your section number.

 

handin mhaungs Program1-xx cannon.c