Skip to navigation Skip to content
Gotit Pro - Your Friendly Study Co-Pilot
Gotit Pro

Your Friendly Study Co-Pilot

  • Home
  • About
  • Questions
  • Contact & Support
  • My Account
  • Home
  • About
  • Questions
  • Contact & Support
  • My Account
  • $0.00 0 items
Home / Computer Science / The case study The following requirements have been gathered to write a progam for a Customer
Waived!
🔍
The case study: The following requirements have been gathered to write a program for a 'Customer Account Bank Management System': 1) Display a welcome screen, the name of the bank, and the name of the system (see figure 1). 2) Display the main menu options and the statement to select among those options (see figure 1). 3) Open account: Enter the account number, customer name, and account type (Checking or Saving). 4) Deposit Amount: Enter the account number and the amount of money. 5) Withdraw Amount: Enter the account number and then make the account = 0. 6) Display All Accounts information. 7) Display the last transaction: Display Transaction Information by Account No, Date. 8) Close an account by deleting it. The customer should choose which account he/she should close. 9) After each transaction, always ask the customer for further transactions before leaving the system. Hint: Each task (from points 3 to 9) should be programmed in a separate user-defined function.

The case study The following requirements have been gathered to write a progam for a Customer

Rated 5.00 out of 5 based on 3 customer ratings
(4 customer reviews)

$10.00 Original price was: $10.00.$5.00Current price is: $5.00.

Download button will appear immediately after successful payment.

Full support will be provided with necessary files installation.

Get impeccable customized solution within 24 hours, hassle-free.

View Details
SKU: 4635 Category: Computer Science Tags: 1 Display a welcome screen the name of the bank and the name of the system see figure 1, 2 Display the main menu options and the statement to select among those options see figure 1, 3 Open account Enter the account number customer name and account type Checking or Saving, 4 Deposit Amount Enter the account number and the amount of money, 5 Withdraw Amount Enter the account number and then make the account 0, 7 Display the last transaction Display Transaction Information by Account No Date, 9 After each transaction always ask the customer for further transactions before leaving the system, Hint Each task from points 3 to 9 should be programmed in a separate userdefined function, The following requirements have been gathered to write a program for a Customer Account Bank Management System
Solved By Verified
Study Co-Pilot All Study Co-Pilots are evaluated by Gotit Pro as an expert in their subject area.
Instant
Download
Live Chat
+1 (646) 357-4585
  • Description
  • Reviews (4)

Description

The case study:

The following requirements have been gathered to write a program for a ‘Customer Account Bank Management System’:

1) Display a welcome screen, the name of the bank, and the name of the system (see figure 1).

2) Display the main menu options and the statement to select among those options (see figure 1).

3) Open account: Enter the account number, customer name, and account type (Checking or Saving).

4) Deposit Amount: Enter the account number and the amount of money.

5) Withdraw Amount: Enter the account number and then make the account = 0.

6) Display All Accounts information.

7) Display the last transaction: Display Transaction Information by Account No, Date.

8) Close an account by deleting it. The customer should choose which account he/she should close.

9) After each transaction, always ask the customer for further transactions before leaving the system.

Hint: Each task (from points 3 to 9) should be programmed in a separate user-defined function.


4 reviews for The case study The following requirements have been gathered to write a progam for a Customer

  1. Rated 5 out of 5

    Frank Cory – October 24, 2023

    Great Work In Timely Fashion. Something what I wanted.

  2. Rated 5 out of 5

    Nitin Desai – October 25, 2023

    Fantastic support for every assignment, every time. 5+ Stars!

  3. Rated 5 out of 5

    Glenn Mccall – October 26, 2023

    It was quality work and in a timely manner. It was the help I needed at the time, and I appreciate it so very much.

  4. Rated 5 out of 5

    Andrew Porteck – October 26, 2023

    I have received phenomenal service that is consistent. The quality of work is A+ and the prices are very reasonable.

Only logged in customers who have purchased this product may leave a review.


You may also like…

  • Problem 5) Develop a program that asks the user to enter a number. If the user enters 1, the program computes and displays the value of S1. If the user enters 2, the program computes and displays the value of S2. If the user enters something else, the program displays the message: "invalid choice". The following equations define S1 and S2: S1 = ∑(k=1 to N) k S2 = ∑(r=1 to N) r + 5r The user provides the value of N. Problem 6) Develop a C++ program that continuously prompts the user to enter a positive number until the user enters a negative number to terminate the entry process. When this happens, the program should display the sum of the positive numbers entered by the user. For example, if the user enters 4, 1, 5, 2, 3, the sum computed by the program should be 12 (the negative number is not included in the sum).

    Problem 5 Develop a program that asks the user to enter a number If the user enters 1 the

    Rated 5.00 out of 5
    Waived! $10.00 Original price was: $10.00.$5.00Current price is: $5.00.
    Add to cart
  • Help with C thanksQuestion 1 Implement a C program and explain the syntax and use of data

    Help with C thanksQuestion 1 Implement a C program and explain the syntax and use of data

    Rated 5.00 out of 5
    Waived! $10.00 Original price was: $10.00.$5.00Current price is: $5.00.
    Add to cart
  • Write a script in Python that automatically creates a directory structure for each user in a csv

    Write a script in Python that automatically creates a directory structure for each user in a csv

    Rated 5.00 out of 5
    Waived! $10.00 Original price was: $10.00.$5.00Current price is: $5.00.
    Add to cart
  • (1) Write a function which takes a list of the coefficients of a polynomial P(x) = a0 + a1x + a2x^2 + ... + anx^n of arbitrary degree n, and a value of x0, and returns P(x0). You can use the function given in lectures, ensuring you understand how it works. (2) Use the function to evaluate (a) P1(x) = 4x^4 + 3x^2 + 2 at x = 2. (b) P2(x) = 241x^4 at x = 2. Are these answers exact? Explain why or why not. (Use a print statement to show the evaluation of your function, and answer the question in a comment.) (3) The power series for the sine function sin(x) is given by sin(x) = Σ (1)^n * (2n+1)! * x^(2n+1) = x - x^3/3! + x^5/5! - x^7/7! + ..., for all x. Use the first four terms in this series in the Horner evaluation function at a suitable value of x to give an approximation of sin(π/4). (4) (a) Use your Horner's method function to evaluate the polynomial (x-1)^3 at the point x = 1.000001. (b) Is this answer correct? (c) Briefly explain why or why not. (5) In week 3 we wrote a function to convert from binary to decimal. This can be adapted to other bases; here we will explore octal (base 8). The efficiency of the function we wrote can be improved using the same principle as Horner's method. Write such a function (horner_octal_to_dec) using the ideas of Horner's method which takes a list whose entries are integers between 0 and 7, where the list represents a base-8 number, and returns the corresponding decimal integer (so the input [2,5,1] returns the integer 169).

    1 Write a function which takes a list of the coefficients of a polynomial Pxa0a1xa2x2anxn

    Rated 5.00 out of 5
    Waived! $10.00 Original price was: $10.00.$5.00Current price is: $5.00.
    Add to cart
  • Hough Transformation: An approach that finds the continuous lines from edge pixels on images. This implementation only requires working on straight lines. On the screen, show the original image, the edge image (i.e., only showing the edge pixels in the image), the space of the transformation shown as an image, and overlay the straight lines detected from the transformation on the original image.

    Hough Transformation An approach that finds the continual lines from edge pixels on images This

    Rated 5.00 out of 5
    Waived! $25.00 Original price was: $25.00.$15.00Current price is: $15.00.
    Add to cart
  • Problem 3) Let 1 be a line in the xy plane. If l is a vertical line, its equation is x=a for some real number a. Suppose I is not a vertical line and its slope is m. Then the equation of l is y=mx+b, where b is the y-intercept. If 1 passes through the point (x0,y0), the equation of 1 can be written as yy0=m(xx0). If (x1,y1) and (x2,y2) are two points in the xy plane and x1=x2, the slope of the line passing through these points is m=(y2y1)/(x2x1). Write a program that prompts the user for two points in the xy plane. The program should output the equation of the line and use if statements to determine and output whether the line is vertical, horizontal, increasing, or decreasing. If 1 is a non-vertical line, output its equation in the form y=mx+b. Problem 4) Write a program that prompts the user to enter two integers. The program should output how many numbers are multiples of 3 and how many numbers are multiples of 5 between the two integers (inclusive). Sample Output: Enter two integers: 5 50 Multiples of 3 between 5 and 50: 15 Multiples of 5 between 5 and 50: 10

    Problem 3 Let 1 be a line in the xy plane If l is a vertical line its equation is xa for some

    Rated 5.00 out of 5
    Waived! $25.00 Original price was: $25.00.$15.00Current price is: $15.00.
    Add to cart

Related products

  • Set up a WAN with enhanced routing and communication

    Set up a WAN with enhanced routing and communication

    $5.00
    Add to cart
  • Chapter 1 Programming Quiz Machine language is expressed as a series of 1s and 0s. C# programmers must use Pascal casing when creating method names to produce an executable program. The C# programming language was developed as an object-oriented and component-oriented language. When the keyword void is used in the Main() method header, it indicates that the Main() method is empty. The Visual Studio IDE gives you advanced features such as syntax coloring and automatic statement completion. Internally, computers are constructed from circuitry that consists of small on/off switches. The most basic circuitry-level language that computers use to control the operation of those switches is called ____. A ____ programming language allows you to use a vocabulary of reasonable terms such as "read," "write," or "add" instead of the sequence of on/off switches that perform these tasks. Programmers use a computer program called a(n) ____ to translate their high-level language statements into machine code. The ____ behind any program involves executing the various statements and procedures in the correct order to produce the desired results. To achieve a working program that accomplishes the tasks it is meant to accomplish, you must remove all syntax and logical errors from the program. This process is called ____ the program. When you write a(n) ____ program, you use your knowledge of a programming language to create and name computer memory locations that can hold values, and you write a series of steps or operations to manipulate those values. In programming languages, a variable is referenced by using a one-word name, which is called a(n) ____, with no embedded spaces. For convenience, the individual operations used in a computer program often are grouped into logical units called ____. When programmers adopt the style of capitalizing the first letter of all new words in an identifier, even the first one, they call the style ____. A(n) ____ describes potential objects. A class describes the attributes and methods of every object that is a(n) ____, or example, of that class. ____ is the technique of packaging an object's attributes and methods into a cohesive unit that can be used as an undivided entity. Programmers sometimes refer to encapsulation as using a ____. ____ provides the ability to extend a class so as to create a more specific class. ____ represent(s) information that a method needs to perform its task. The ____ method displays output on the screen and positions the cursor on the next line. A(n) ____ is a construct that acts like a container to provide a way to group similar classes. void and static are examples of C# predefined ____. ____ are nonexecuting statements that you add to document a program. After you write and save a program, you must ____ it into intermediate language. A method ____ includes the method name and information about what will pass into and be returned from a method. A computer ____________________ is a set of instructions that you write to tell a computer what to do. Named computer memory locations are called ____________________ because they hold values that might vary. When programmers do not capitalize the first letter of an identifier but do capitalize each new word, they call the style ____________________. The ____________________ of an object are the features it "has." ____________________ describes the ability to create methods that act appropriately depending on the context. Adding when you should be multiplying ed The ability to extend a class to create a more specific class The rules of a high-level programming language The description of interaction between a method and an object Any combination of spaces, tabs, and carriage returns (blank lines) Any combination of spaces, tabs, and carriage returns (blank lines) The value of an object's attributes at any point in time A series of characters that will be used exactly as entered The line on which you type a command in a system that uses a text interface

    C# programmers must use Pascal casing when creating method names to produce an executable program.

    Rated 5.00 out of 5
    Waived! $14.00 Original price was: $14.00.$10.00Current price is: $10.00.
    Add to cart
  • C# Tabernik Final Ch 1,2,3,4,5 Quiz Programmers make use of what type of program in order to translate higher-level language statements into machine code? Internally, computers are constructed from circuitry that consists of small on/off switches. What is the most basic circuitry-level language that computers use to control the operation of those switches called? An identifier that is prefixed with an @ and allows you to use code written in other languages that do not have the same set of reserved keywords is known by what name? What must be done once a C# program has been finished before it can be use What is NOT considered a keyword by the C# language? What programming style capitalizes the first letter of all new words in an identifier, including the first one? When writing C# code, how do you indicate a namespace? A series of four or five comparisons and calculations that together determine an employee's withholding tax value might be grouped using what sort of logical unit? What can be used as a construct that acts like a container to provide a way to group similar classes? The use of "void" and "static" are both examples of what predefined C# language component? What are nonexecuting statements that you can use to document or add notes to assist in the use of the program? What term describes a one-word name with no embedded spaces that references a variable in a program? What statement regarding the C# programming language is accurate? The program you are creating must output information onto the screen, and then position the cursor on the next line in preparation for additional output. What method should you use? Encapsulation is similar to using a device you use without regard for the internal mechanisms. What is the common term for this type of device? What technique involves the packaging of an object's attributes and methods into a cohesive unit that can be used as an undivided entity? What is an object in relation to a defined class in a programming language? What information must be supplied when utilizing a method that requires additional information in order to operate? What is the process of removing all syntax and logical errors from a program in order to create a working program that accomplishes all intended tasks known as? What type of program is created by the use of named memory locations and a series of steps or operations to manipulate the values of those memory locations? What kind of programming language allows you to use a vocabulary of reasonable terms such as "read," "write," or "add" instead of the sequence of on/off switches that perform these tasks? What can be used to extend an existing class so as to create a more specific class? What command can be used from the Developer Command Prompt in order to compile a C# program? Where can a method's name and information about what will be passed into and returned from a method be found? A program's execution of various statements and procedures in a correct order to produce desired results is referred to as what defining characteristic? When using arithmetic operations with operands of dissimilar types, an automatic conversion of nonconforming operands to a unifying type occurs. What is this conversion process called? What method from the Convert class can be used to convert a specified value to an 8-bit unsigned integer? What type of operator can be used to reduce a variable's value by 1 either at time of evaluation, or after it is evaluated, depending on placement? What can be used to control the appearance of text output? What method can be used as an alternative to the Convert class methods to change a string into a number? What happens when "string1" is added to "string2" using the + sign in the C# programming language? What operator is used for exponentials in the C# programming language? What type of expression has a Boolean value as a result? When running a program, an instruction to the user to enter data for the program to process is known by what term? What statement regarding operator precedence is accurate? In the C# statement moneyString = someMoney.ToString("F3"), what is "F3" an example of? What keyword can be used to create a named identifier for a memory location whose contents cannot change? What data type can be used to hold a series of characters? What method can be used to accept user input from the keyboard on the console? You are performing an arithmetic operation and have placed the desired result type in parentheses followed by a variable to be cast with the result. What is this an example of? How is a Boolean variable declared in a program? What is NOT part of a variable declaration in the C# programming language? An assignment that is made when a variable is declared is known as what? In C#, += adds the operand on the right to the operand on the left and assigns it to the operand on the left in one step. What is the name for this operator? What data type can be used to hold any single character, including numbers and non-printing characters? What type of program specifically allows and accepts user input? What type of arithmetic operator has one argument to the left and another argument to the right of the operator? What is the term for a named location in computer memory that can hold different values at different points in time? What uses curly braces containing a number that indicates the desired position for a variable in a list that follows a string used for formatting purposes? What type of number can be described as having varying numbers of significant digits, which contains decimal positions? What controls can be used to allow a user to input data in a GUI application? After making a change to a program and attempting to re-run it, you get an error message stating that changes are not allowed. What can you do to clear the error? What name is given to the first form in a Windows Forms project within Visual C# by default? After a user types a value into a TextBox in an executing program, where is the value stored? After you have added a Button onto a form, what can you do in order to create a method that executes when the user clicks the Button? What kind of GUI object is rectangular and provides an interface for collecting, displaying, and delivering information? Where in the Visual C# IDE main window can you find the File menu, as well as submenus for editing, debugging, and help tasks? If a Button's name is reportButton, what will the default name of its Click() method be? What process involves the changing of a program's internal structure without changing the way the program works? What Label property can be changed to display any string of text? Where can the appearance, size, color, and window management features of a Form be modified? What feature in the Visual C# IDE can be used for viewing and managing project files and settings? When sorting the Properties in alphabetical order in the Properties window, what entry is not in alphabetical order? What type of font should you use if you wish to align text values on controls? Objects such as the labels, buttons, and text boxes seen within a program's environment are all components of what part of a program? What property can be modified to change the tab order for a GUI component? What determines the order in which controls receive focus from successive Tab key presses? When designing an application, what type of interface generally requires more time to develop? What form property allows you to specify the caption of the Form in the title bar? What key combination can be used to run a program without debugging it? What part of a button on a form can be dragged in order to change the button's size? What serves as a control that is used to display text such as a prompt or a result of some computation? What statement regarding the use of Designer.cs files is accurate? Labels, text boxes, and buttons that users can manipulate to interact with a program's forms are referred to by what term? Approximately how many different properties exist within the Form class? When using a switch structure to make decisions within a program, what keyword is used to begin the structure? What can be used in conjunction with a switch statement in order to make the meaning of case label values much clearer? What type of statement can be used to make a single-alternative decision? What keyword can you use to specify an action to take in the event that a test expression does not match any case? What character(s) are used to form the ternary conditional operator in C#? What character(s) function as the non-conditional Boolean logical AND operator in the C# programming language? What conditional operator can be used to create a compound Boolean expression as an alternative to if statements? In a situation where you want to perform one action when a Boolean expression evaluates as true and an alternate action when it evaluates as false, otherwise known as a dual-alternative decision, what sort of statement should you use? The if expression that precedes a block in a decision structure is known as what type of statement? In C#, what operator is used as an abbreviated version of the if-else statement, and requires three expressions separated with a question mark and a colon? What conditional operator can be used when you want some action to occur even if only one of two given conditions is true? What character(s) serve as the NOT operator in the C# programming language? What should you use if you wish to execute two or more statements conditionally? What kind of conditional operator requires three arguments: a test expression, and true and false result expressions? What rule results in an error if you reach the end point of a statement list in a case section? When creating a flowchart or pseudocode representation of a task, what type of structure is one in which one step follows another unconditionally? In a switch statement, what keyword is followed by one of the possible values that might equal the switch expression? What character(s) do you use to make a conditional AND operator within a C# program? Placing the opening brace of an if block on the same line as the if statement is known as what style of programming? When designing a flowchart for assisting in the coding process, what is a parallelogram typically used to represent? What character(s) function as the conditional OR operator in the C# programming language? What sort of evaluation involves the evaluation of expressions in each part of a compound, conditional Boolean expression only as much as necessary to determine whether the expression is false? What type of structure involves choosing between alternative courses of action based on some value within a program? What character(s) function as the non-conditional Boolean logical inclusive OR operator? When the & and | operators are used between Boolean expressions, they are Boolean logical operators. What are they when used between integer expressions? What type of loop checks a Boolean expression at the "bottom" of the loop after each repetition has occurred? Both the while loop and for loops are considered to be in what category of loops? What type of loop is one in which the loop control variable is tested after the loop body executes? What is any single execution of a loop referred to as? A loop for which the number of iterations is predetermined is known as what type of loop? A bug has resulted in your program executing an infinite loop. What key can be pressed in conjunction with the C or Break (Pause) key to escape the loop? You are writing a program that defines a variable within a loop, and then tries to use that variable outside the loop. However, the program does not run as intended. What is the issue? What type of loop checks a Boolean expression at the "top" of the loop before the body has a chance to execute? A loop that is controlled by user input rather than altered by arithmetic is known as what type of loop? What should an accumulator variable be set to before it is used to accumulate a total? Totals that are summed one at a time in a loop are known as what type of totals? The expressions in each part of an AND or OR expression are evaluated only as much as necessary to determine whether the entire expression is true or false. What type of evaluation is this? What technique can be used to combine two different loops into one? Unlike the while and for loops, the do loop is considered to be in what category of loops? What is a garbage value in the C# programming language? Why do event-driven GUI programs sometimes require fewer coded loops than their counterpart console applications? Many loop control variable values rely on an added value through each loop. What type of loop control variable is this? Loops that are controlled by reducing a variable are utilizing what type of loop control variable? A value such as a 'Y' or 'N' that must be supplied in order to stop a loop is known as what type of value? After executing your GUI program, you realize that your code has created an infinite loop. How can you break free of the loop in your GUI program? What are the block of statements that are executed in a loop considered to be part of? When using nested loops, what loop is contained entirely within an outer loop? What type of loop allows you to indicate the starting value for the loop control variable, the test condition that controls loop entry, and the expression that alters the loop control variable, all in one convenient place? When using a nested loop, what should always be thought of as the all-encompassing loop? What keyword(s) should you use to initiate a for-loop in C#?

    Programmers make use of what type of program in order to translate higher-level language statements into machine code?

    Rated 5.00 out of 5
    Waived! $14.00 Original price was: $14.00.$10.00Current price is: $10.00.
    Add to cart
Write a script in Python that automatically creates a directory structure for each user in a csv Write a script in Python that automatically creates a directory structure for each user in a csv Please help me in the following code in Python The tspAnalyze.py is below: The tspTest_v0.txt and tspTest_v1.txt is:"The travelling salesman problem (also called the traveling salespersonproblem or TSP) asks the following question: 'Given a list of cities andthe distances between each pair of cities, what is the shortest possibleroute that visits each city exactly once and returns to the origin city?'It is an NP-hard problem in combinatorial optimization, important intheoretical computer science and operations research."- Wikipedia Contributors, "Travelling salesman problem",Wikipedia, The Free Encyclopedia, 10 October 2021.MAIN MENU0. Exit program1. Print database2. Limit dimension3. Plot one tourChoice (0-3)? 1NUM FILE NAME EDGE TYPE DIMENSION COMMENT 1 a280 EUC_2D 280 drilling problem (Ludwig) 2 ali535 GEO 535 535 Airports around the globe (Padberg/Rinaldi) 3 att48 ATT 48 48 capitals of the US (Padberg/Rinaldi) 4 att532 ATT 532 532-city problem (Padberg/Rinaldi) 5 bayg29 EXPLICIT 29 29 Cities in Bavaria, geographical distances (Groetschel,Juenger,Reinelt) 6 bays29 EXPLICIT 29 29 cities in Bavaria, street distances (Groetschel,Juenger,Reinelt) 7 berlin52 EUC_2D 52 52 locations in Berlin (Groetschel) 8 bier127 EUC_2D 127 127 Biergaerten in Augsburg (Juenger/Reinelt) 9 brazil58 EXPLICIT 58 58 cities in Brazil (Ferreira)10 brd14051 EUC_2D 14051 BR Deutschland in den Grenzen von 1989 (Bachem/Wottawa)11 brg180 EXPLICIT 180 Bridge tournament problem (Rinaldi)12 burma14 GEO 14 14-Staedte in Burma (Zaw Win)13 ch130 EUC_2D 130 130 city problem (Churritz)14 ch150 EUC_2D 150 150 city Problem (churritz)15 d1291 EUC_2D 1291 Drilling problem (Reinelt)16 d15112 EUC_2D 15112 Deutschland-Problem (A.Rohe)17 d1655 EUC_2D 1655 Drilling problem (Reinelt)18 d18512 EUC_2D 18512 Bundesrepublik Deutschland (mit Ex-DDR) (Bachem/Wottawa)19 d198 EUC_2D 198 Drilling problem (Reinelt)20 d2103 EUC_2D 2103 Drilling problem (Reinelt)21 d493 EUC_2D 493 Drilling problem (Reinelt)22 d657 EUC_2D 657 Drilling problem (Reinelt)23 dantzig42 EXPLICIT 42 42 cities (Dantzig)24 dsj1000 CEIL_2D 1000 Clustered random problem (Johnson)25 eil101 EUC_2D 101 101-city problem (Christofides/Eilon)26 eil51 EUC_2D 51 51-city problem (Christofides/Eilon)27 eil76 EUC_2D 76 76-city problem (Christofides/Eilon)28 fl1400 EUC_2D 1400 Drilling problem (Reinelt)29 fl1577 EUC_2D 1577 Drilling problem (Reinelt)30 fl3795 EUC_2D 3795 Drilling problem (Reinelt)31 fl417 EUC_2D 417 Drilling problem (Reinelt)32 fnl4461 EUC_2D 4461 Die 5 neuen Laender Deutschlands (Ex-DDR) (Bachem/Wottawa)33 fri26 EXPLICIT 26 26 Staedte (Fricker)34 gil262 EUC_2D 262 262-city problem (Gillet/Johnson)35 gr120 EXPLICIT 120 120 cities in Germany (Groetschel)36 gr137 GEO 137 America-Subproblem of 666-city TSP (Groetschel)37 gr17 EXPLICIT 17 17-city problem (Groetschel)38 gr202 GEO 202 Europe-Subproblem of 666-city TSP (Groetschel)39 gr21 EXPLICIT 21 21-city problem (Groetschel)40 gr229 GEO 229 Asia/Australia-Subproblem of 666-city TSP (Groetschel)41 gr24 EXPLICIT 24 24-city problem (Groetschel)42 gr431 GEO 431 Europe/Asia/Australia-Subproblem of 666-city TSP (Groetschel)43 gr48 EXPLICIT 48 48-city problem (Groetschel)44 gr666 GEO 666 666 cities around the world (Groetschel)45 gr96 GEO 96 Africa-Subproblem of 666-city TSP (Groetschel)46 hk48 EXPLICIT 48 48-city problem (Held/Karp)47 kroA100 EUC_2D 100 100-city problem A (Krolak/Felts/Nelson)48 kroA150 EUC_2D 150 150-city problem A (Krolak/Felts/Nelson)49 kroA200 EUC_2D 200 200-city problem A (Krolak/Felts/Nelson)50 kroB100 EUC_2D 100 100-city problem B (Krolak/Felts/Nelson)51 kroB150 EUC_2D 150 150-city problem B (Krolak/Felts/Nelson)52 kroB200 EUC_2D 200 200-city problem B (Krolak/Felts/Nelson)53 kroC100 EUC_2D 100 100-city problem C (Krolak/Felts/Nelson)54 kroD100 EUC_2D 100 100-city problem D (Krolak/Felts/Nelson)55 kroE100 EUC_2D 100 100-city problem E (Krolak/Felts/Nelson)56 lin105 EUC_2D 105 105-city problem (Subproblem of lin318)57 lin318 EUC_2D 318 318-city problem (Lin/Kernighan)58 lin318 EUC_2D 318 Original 318-city problem (Lin/Kernighan)59 nrw1379 EUC_2D 1379 1379 Orte in Nordrhein-Westfalen (Bachem/Wottawa)60 p654 EUC_2D 654 Drilling problem (Reinelt)61 pa561.tsp EXPLICIT 561 561-city problem (Kleinschmidt)62 pcb1173 EUC_2D 1173 Drilling problem (Juenger/Reinelt)63 pcb3038 EUC_2D 3038 Drilling problem (Junger/Reinelt)64 pcb442 EUC_2D 442 Drilling problem (Groetschel/Juenger/Reinelt)65 pla33810 CEIL_2D 33810 Programmed logic array (Johnson)66 pla7397 CEIL_2D 7397 Programmed logic array (Johnson)67 pla85900 CEIL_2D 85900 Programmed logic array (Johnson)68 pr1002 EUC_2D 1002 1002-city problem (Padberg/Rinaldi)69 pr107 EUC_2D 107 107-city problem (Padberg/Rinaldi)70 pr124 EUC_2D 124 124-city problem (Padberg/Rinaldi)71 pr136 EUC_2D 136 136-city problem (Padberg/Rinaldi)72 pr144 EUC_2D 144 144-city problem (Padberg/Rinaldi)73 pr152 EUC_2D 152 152-city problem (Padberg/Rinaldi)74 pr226 EUC_2D 226 226-city problem (Padberg/Rinaldi)75 pr2392 EUC_2D 2392 2392-city problem (Padberg/Rinaldi)76 pr264 EUC_2D 264 264-city problem (Padberg/Rinaldi)77 pr299 EUC_2D 299 299-city problem (Padberg/Rinaldi)78 pr439 EUC_2D 439 439-city problem (Padberg/Rinaldi)79 pr76 EUC_2D 76 76-city problem (Padberg/Rinaldi)80 rat195 EUC_2D 195 Rattled grid (Pulleyblank)81 rat575 EUC_2D 575 Rattled grid (Pulleyblank)82 rat783 EUC_2D 783 Rattled grid (Pulleyblank)83 rat99 EUC_2D 99 Rattled grid (Pulleyblank)84 rd100 EUC_2D 100 100-city random TSP (Reinelt)85 rd400 EUC_2D 400 400-city random TSP (Reinelt)86 rl11849 EUC_2D 11849 11849-city TSP (Reinelt)87 rl1304 EUC_2D 1304 1304-city TSP (Reinelt)88 rl1323 EUC_2D 1323 1323-city TSP (Reinelt)89 rl1889 EUC_2D 1889 1889-city TSP (Reinelt)90 rl5915 EUC_2D 5915 5915-city TSP (Reinelt)91 rl5934 EUC_2D 5934 5934-city TSP (Reinelt)92 si1032 EXPLICIT 1032 []93 si175 EXPLICIT 175 []94 si535 EXPLICIT 535 []95 st70 EUC_2D 70 70-city problem (Smith/Thompson)96 swiss42 EXPLICIT 42 42 Staedte Schweiz (Fricker)97 ts225 EUC_2D 225 225-city problem (Juenger,Raecke,Tschoecke)98 tsp225 EUC_2D 225 A TSP problem (Reinelt)99 u1060 EUC_2D 1060 Drilling problem problem (Reinelt)100 u1432 EUC_2D 1432 Drilling problem (Reinelt)101 u159 EUC_2D 159 Drilling problem (Reinelt)102 u1817 EUC_2D 1817 Drilling problem (Reinelt)103 u2152 EUC_2D 2152 Drilling problem (Reinelt)104 u2319 EUC_2D 2319 Drilling problem (Reinelt)105 u574 EUC_2D 574 Drilling problem (Reinelt)106 u724 EUC_2D 724 Drilling problem (Reinelt)107 ulysses16 GEO 16 Odyssey of Ulysses (Groetschel/Padberg)108 ulysses22 GEO 22 Odyssey of Ulysses (Groetschel/Padberg)109 usa13509 EUC_2D 13509 The file US.lat-long.Z can be found in the directory /doc/geography.110 vm1084 EUC_2D 1084 1084-city problem (Reinelt)111 vm1748 EUC_2D 1748 1784-city problem (Reinelt)MAIN MENU0. Exit program1. Print database2. Limit dimension3. Plot one tourChoice (0-3)? 3Number (EUC_2D)? 45Invalid (GEO)!!!MAIN MENU0. Exit program1. Print database2. Limit dimension3. Plot one tourChoice (0-3)? 3Number (EUC_2D)? 7See tspPlot.pngMAIN MENU0. Exit program1. Print database2. Limit dimension3. Plot one tourChoice (0-3)? 0 Version 0 Get Started Unzip V0GetStartedzip into your Working Directory Doubleclick on the
Copyright © 2025 Gotit Pro
SiteMapTerms of Service Privacy Policy
  • My Account
  • Search
    Generic selectors
    Exact matches only
    Search in title
    Search in content
    Post Type Selectors
    Search in posts
    Search in pages
  • Cart 0
The case study: The following requirements have been gathered to write a program for a 'Customer Account Bank Management System': 1) Display a welcome screen, the name of the bank, and the name of the system (see figure 1). 2) Display the main menu options and the statement to select among those options (see figure 1). 3) Open account: Enter the account number, customer name, and account type (Checking or Saving). 4) Deposit Amount: Enter the account number and the amount of money. 5) Withdraw Amount: Enter the account number and then make the account = 0. 6) Display All Accounts information. 7) Display the last transaction: Display Transaction Information by Account No, Date. 8) Close an account by deleting it. The customer should choose which account he/she should close. 9) After each transaction, always ask the customer for further transactions before leaving the system. Hint: Each task (from points 3 to 9) should be programmed in a separate user-defined function.
You're viewing: The case study The following requirements have been gathered to write a progam for a Customer $10.00 Original price was: $10.00.$5.00Current price is: $5.00.
Rated 5.00 out of 5
Add to cart