UMBC CMSC 211

CSEE | 211 | Current | lectures | news | help


Project Extra Credit

Requirements Specfication

Prompt the user for the values of A, B, C, X and Y. X and Y are to be input as integers, which you must convert to floating point. Then solve the equation Z = AX2 + BXY + CY2.

USE ONLY FLOATING POINT MATH!

Program Header Block

/*****************************************************/
/* Program Header Block                              */
/* Filename:       proj2.c                           */
/* Name:           Ima Student                       */
/* SSAN:           123-45-6789 (could be XXX-XX-6789)*/
/* Date:           6 April 1998                      */
/* Course/section: CMSC-211                          */
/* Description:                                      */
/*     Analysis:                                     */
/*         Input:                                    */
/*         Output:                                   */
/*         Constraints:                              */
/*         Formulas:                                 */
/*         Assumptions:                              */
/*     Design:                                       */
/*         (Your psuedocode goes here.)              */
/*                                                   */
/* Notes:          (As needed.)                      */
/*****************************************************/


CSEE | 211 | Current | lectures | news | help