UMBC CMSC104

CMSC 104, Spring 2002

Project 3


Due Date:

Midnight, Tuesday March 19

Note: No late projects will be accepted.

The Objective

The Task



Submitting the Program

Your C source code file MUST be called proj3.c. To submit your project, type the following at the Unix prompt. Note that the project name starts with uppercase 'P'. submit cs104_0101 Proj3 proj3.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. submitls cs104_0101 Proj3

The Program


/************************************************************** ** Filename: proj3.c ** Author: put your name here ** Date Written: 3/11/02 ** SSN: put your SSN here (last 4 digits only is OK) ** Section: 0601 ** E-mail: put your umbc e-mail address here ** Description: This program asks the user to enter integers, ** one at a time, until the user enters a zero. ** The largest integer is computed and displayed. ***************************************************************/ #include <stdio.h> int main() { int number; /* integer entered by the user */ int largest; /* largest entered read */ /* Prompt the user for an integer and read it */ /* Initialize the largest integer */ printf("Please input an integer, 0 to end: "); scanf("%d", &number); largest = number; /* Continue to prompt and read until a zero is read */ /* Keep track of the largest integer entered */ while (number != 0) { if (largest < number) { largest = number; } printf("Please input an integer, 0 to end: "); scanf("%d", &number); } /* Display the largest integer entered */ if(largest == 0) { printf("\nYou quit right away! No integer to "); printf(" display!"); } else { printf("\nThe largest integer entered was %d.\n", largest); } return 0; }
Last Modified: Wednesday, 13-Mar-2002 13:11:48 EST
Wednesday, 13-Mar-2002 13:11:48 EST