CPSC 130 (17663, 14154)
Introduction to Computer Programming
MD Minhaz Chowdhury
Programming Assignment 4
Chapter 3
Objective of the Assignment
In this exercise, we will find the maximum and minimum of four numbers. You need to use if then else conditional statement or its short form (example max = (a>b? a: b);) to find these values.
Total Score: 20
Tasks
Write a program that finds the maximum and minimum of four numbers. The input numbers can be hard coded or can be given from input (there is no restriction on input read in this problem). Your program shall print the maximum and minimum of these four numbers. You need to use if then else conditional statement to find these values.
Example: if you have numbers -1, 5, 100, 0 then your program’s output shall look like this:
First number: -1
Second number: 5
Third number: 100
Fourth number: 0
Maximum of the numbers: 100
Minimum of the numbers: -1
Your Program Must Contain
Total: 14 for the code part.
Note: Submission of the assignment using a word or pdf file that follows the given format. If you do not use, follow the given template format then your score will be zero. You must mention your name, course number, course section number (or schedule, example MWF 10 am) in the assignment and any email related to the assignment. If you email does not contain any of the mentioned information, then your email will be considered as not acceptable
What to Submit
You must submit a document whose template is given below. Your score can not be confirmed if you just sent screenshots in the email or upload at D2L. You need to put the screenshots and code in the template. In that template put the following items:
Total: 14 + 6 = 20
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme