(CASE structure) and make a comparison between them D3.2 a. Write a program to read three integers and determine the smallest value. b. Write a similar program for ten integers.(for this version it is necessary just the algorithm and pseudocode) INDICATION Even the problem is very simple, please try to put in evidence the steps necessary for program development cycle (page 26 from book Prelude to Programming: Concepts and Design) 1. Analyze the problem 2. Design the program
Words: 467 - Pages: 2
Pseudocode syntax, descriptions and examples Overview: This table provides a reference for commonly used pseudocode for introductory computer program design courses. You should use this as your reference and copy and paste code examples into your projects to ensure you are using proper syntax. Be sure to indent your code to make it more readable and use modify and enhance from the examples as needed. Also, capitalize the first letter of your pseudocode (e.g. While, not while). Pseudocode Write/Prompt
Words: 712 - Pages: 3
Week 7 iLab—Sales Tax TCO 3: Given a simple problem, design and desk-check a solution algorithm requiring a modular design that is expressed in terms of pseudocode or program notes, input-process-output (IPO) analysis, and flow chart. * TCO 7: Given a program with logic errors that is intended as a solution to a simple problem, employ debugging diagnostics to remove and correct the errors. TCO 8: Given a more complex problem, develop a complete solution that includes a comprehensive statement
Words: 784 - Pages: 4
in this section and comment your pseudocode. PseudoCode Input Data Module: Input: LengthFeet, WidthFeet, AreaOfRoomXFeet Perform Calculations Module Compute: AreaOfRoomXFeet Here the formula use will be AreaOfRoomX = Length X Width Compute: UsableAreaFeet Here I will use the this equation: UsableArea = AreaOfRoom1 + AreaOfRoom2 + AreaOfRoom3 + AreaOfRoom4. Output Results Module AreaOfRoomXFeet and UsableAreaFeet Refined Pseudocode: MAIN MODULE Declare LengthFeet
Words: 285 - Pages: 2
DeAnna Lo SD114 Vincent Tran Chapter 5 Exercise 1 1. What is output by each of the pseudocode segments in Figure 5-22? Answer: a. 5, 22, 5 b. 4, 6, 7 c. 5, 6 d. Goodbye Goodbye Goodbye Goodbye Goodbye Goodbye Goodbye Goodbye Goodbye e. Hello Hello Hello f. Adios Adios Adios Adios Adios Adios Adios Adios Chapter 6 Exercise 2 a.) Pseudocode: start Declarations num index num sum num avg num SIZE = 12 num numbers[SIZE]
Words: 296 - Pages: 2
9. t 10.f 11. t 12. f Algorithm Workbench #1 - #7, pp.115-6 – Write pseudocode (not Java) (21 pts. total) 1. Module Main() Declare userNum as Integer Display "Enter a number" input userNum call TimesTen(userNum) Display userNum End Function TimesTen(integer userNum) userNum = (userNum * 10) return userNum End Function Algorithm Workbench #1 - #7, pp. 115-6 (continued) – Write pseudocode (not Java) 2. def main(): showvalue() def showvalue(): print '12'
Words: 645 - Pages: 3
COMP101 – Problem Solving with Computing Homework - WEEK 12 [30 points] This is further review of some of the material from Chapter 6, some simple steps in coding using JavaScript and the repl.it website, and lectures from class. No credit for answers that are copies or near verbatim transcripts – please use your own words[1] and document sources where appropriate. Chapter 7 Answer the following questions: 1. JavaScript Debugging Exercises [1 point each, 5 points total] The snippets of
Words: 2288 - Pages: 10
............................................................................1 Wireframe diagram ...................................................................................................................................................2 Pseudocode for button's click event .........................................................................................................................2 Flowchart for the button's click event .........................................................
Words: 326 - Pages: 2
* Be able to Use pseudocode/flowcharts to represent repetition structures. * Be able to Create While, Do-While, and Do-Until conditional loops. * Be able to Describe the implications of an infinite loop. Assignment Requirements Complete the following exercises. An exercise that calls for an algorithm may be written in English as a series of steps. An exercise that calls for program statements may be written in a) the text’s pseudocode, b) your own preferred pseudocode notation or c) Visual
Words: 310 - Pages: 2
Programming Development: Part 3 NAME PRG/211 11/28/2011 INSTRUCTOR Abstract The purpose of this document is to address all items required for the Part 3 of the Programming Development assignment. Programming Development: Part 3 In the previous weeks, the choice for developing software was for an Animal Shelter and it was also analyzed selection structures. In this paper are analyzed array and loop structures that will be present in the program as part of its implementation. Identified
Words: 810 - Pages: 4