CMIS 102 6382 September 28, 2014 A. Problem Analysis • The purpose of the program is to calculate the area ,perimeter and diagonal length of a rectangle with dimensions (Length and width) are provided by a user. • Input the values of length and width from the user • For finding the area, the calculation is length * width • For the perimeter, calculation is (length + width) * 2 . • For finding the diagonal length , the formula is sqrt( length*length
Words: 470 - Pages: 2
CMIS102 Homework Assignment 1 Student Name: Neal Fowler Class/Section: CMIS 102 Section 6385 Professor Name: Marie Arvi Assignment due date: 6 January 2014 Problem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis: What is the required output? Total square footage of a house (in square feet) What is the necessary input? Room 1, 2, 3, and 4 length and width. How
Words: 472 - Pages: 2
Erhi Uviovo CMIS 102 - Introduction to Problem Solving & Algorithm Design Section 7381 (WebTycho) Assignment Final Plan November 10 2013 Problem Statement Design a program that will allow a user to Input a list of your family members along with their age and state where they reside. Determine and print the average age of your family and print the names of anyone who live in Texas Analysis The input data that will be used in this program will be the names, age, and state of my family
Words: 538 - Pages: 3
Jesse Sabatini CMIS 102 6387 Introduction to Problem Solving and Algorithm Design (2158) Professor Anyanso, Chukwuma Due: 30 Aug 2015 The following program that I created was in the language of C. I used the online free compiler found at https://ideone.com/DRQIBZ in order to make sure that everything in the coding worked properly. The purpose of the script is to calculate the area of 4 individual rooms and ultimately
Words: 595 - Pages: 3
CMIS 102 Hands-On Lab // Week 3 Overview: This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the program description, analysis, test plan, design (using both flow chart and pseudocode visualization), and implementation with C code. The example provided uses sequential and selection statements. Program Description: This program will calculate the area of a right triangle. The program will ask the user to enter the base and height and
Words: 723 - Pages: 3
Name: Professor: Bernard Bidwell CMIS: 102/6980 Due Date: (06/21/2015) Program Description; Home Work 2 Project- Design a program that will perform House service business, such as; Dusting the whole house, Clean bathrooms, Clean floors and Make beds. Analysis The program will welcome user, and then display the types of services offered
Words: 651 - Pages: 3
CMIS 102/7983 Calculate the total price to purchase all the components required to build a state-of-the-art gaming computer from components available on the internet. Problem Analysis I will calculate the total price to purchase the components required to build a state-of-the-art gaming computer using: Computer base price (CompPrice), the Hard Drive choice (HardDrive_choice), the RAM choice (RAM_choice), and the Sound Card (SoundCard_choice). Once I enter a choice for an option, the program
Words: 633 - Pages: 3
Kenneth jones CMIS 102 15 February 2015 Pseudo code /* This is a pseudo code for calculating the GPA for students each registered for different no of courses */ CalculateStdntGpa (int NoStudents, int NoCourses, char StudentNames[],char CourseGrade[]) //INPUT: No of students, Name of students, No of courses and Grades for each course //OUTPUT: The GPA for each student for(int i = 0: i < NoStudents: i++){ StudentNames[i] <- StdntName; for(int j=1: j<= NoCourses:
Words: 796 - Pages: 4
CMIS102 Homework Assignment 1 Student Name: Abel Patrick Assizo Class/Section: CMIS 102 Section 7986 Professor Name: Jose Romero Assignment due date: April 1, 2012 Assignment: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. 1) Problem analysis This Program is intended to compute the area of a house composed of four rectangular rooms. Indeed, for this problem, we need to output the
Words: 801 - Pages: 4
NAME: CMIS 102 INSTRUCTOR: Due Date: Program Description: This program will calculate the total cost of a customized gaming PC using user selections for Case, Hard Drive, and Graphics Card. There is a baseline cost included in the final price. Analysis: The formula used to determine the computer cost is: TotalCost=CaseCost + HDCost +GPUCost + BaselineCost. All cost items are integers. Input values are TotalCost, A-I. Output value is TotalCoast as Float. Baseline price is a fixed float of
Words: 704 - Pages: 3