Browse Y
Alphabetical listing with fast deep pagination.
29588 items • Page 212 / 592
You are to write a program name calculator.java that evaluates an infix expressi
You are to write a program name calculator.java that evaluates an infix expression entered by the user. The expression may contain the following tokens: (1) Integer constants (a…
You are to write a program name elevator.java that simulates one elevator servic
You are to write a program name elevator.java that simulates one elevator services in a 12-floor building. NOTE There is only one elevator working this building. Here are some req…
You are to write a program name lnfixToPostfix.java that converts an infix expre
You are to write a program name lnfixToPostfix.java that converts an infix expression entered by the user to a postfix expression The expression may contain the following tokens: …
You are to write a program name lnfixToPostfix.java that converts an infix expre
You are to write a program name lnfixToPostfix.java that converts an infix expression entered by the user to a postfix expression The expression may contain the following tokens: …
You are to write a program name match. Java that reads input from a java program
You are to write a program name match. Java that reads input from a java program file, check to see if the comments (//, /*....*/), parenthesis 0, square brackets [] if any, and c…
You are to write a program name matrix.java that multiply and add 2 matrices. 1.
You are to write a program name matrix.java that multiply and add 2 matrices. 1. Your program should prompt the user for the dimensions of the two matrices, then check for compati…
You are to write a program name matrix.java that multiply and add 2 matrices. Re
You are to write a program name matrix.java that multiply and add 2 matrices. Requriements: 1. Your program should prompt the user for the dimensions of the two matrices, then…
You are to write a program name phonedir.java that maintains a list of records c
You are to write a program name phonedir.java that maintains a list of records containing names and phone numbers. The program will prompt the user for a command, execute the comm…
You are to write a program name powerball.java. You are to use arrays as your da
You are to write a program name powerball.java. You are to use arrays as your data structure. Here are some requirements for the program: 1. The program must prompt the user to en…
You are to write a program name search.java that will do the following: a. You a
You are to write a program name search.java that will do the following: a. You are to create 3 arrays - prompt the user for a number that is greater than 100 that will serve as th…
You are to write a program named Pallndreme.java that recognizes a Palindrome. I
You are to write a program named Pallndreme.java that recognizes a Palindrome. In the main method complete the code to read a string from the user. Then call isPalindrome method t…
You are to write a program that asks the user to enter a file that is holding us
You are to write a program that asks the user to enter a file that is holding username password combinations. Then the program should use a structure to store the usernames and pa…
You are to write a program that counts the number of letter pairs in a sentence
You are to write a program that counts the number of letter pairs in a sentence generated by consecutively pairing the letters, excluding the space character. For example, given t…
You are to write a program that creates permutations of an unknown number of str
You are to write a program that creates permutations of an unknown number of strings of various sizes while removing duplicated permutations. For example, given the string "seed",…
You are to write a program that decodes an encoded message. Messages are decoded
You are to write a program that decodes an encoded message. Messages are decoded by subtracting 5 from the ASCII integer representation of the character in a string. For example, …
You are to write a program that does the following: 1. Copy the contents of sour
You are to write a program that does the following: 1. Copy the contents of sourceArray to the area of static RAM starting at location 0x40000000 2. Sort th…
You are to write a program that encrypts a message using a Caesar cipher. The us
You are to write a program that encrypts a message using a Caesar cipher. The user will enter the message to be encrypted and the value of the key. An example run is shown below a…
You are to write a program that finds the largest and smallest integer from the
You are to write a program that finds the largest and smallest integer from the numbers inputted by the user. First you are to prompt the user for the number of integers that the …
You are to write a program that gives its users three basic options: reverse, co
You are to write a program that gives its users three basic options: reverse, convert, and compare. The program should ask the user to input the file name for the file in question…
You are to write a program that helps elementary school children study fractions
You are to write a program that helps elementary school children study fractions. Your program will prompt for an arithmetic operator, which must be one of +, -, *, /. It will the…
You are to write a program that implements the Babylonian algorithm to compute t
You are to write a program that implements the Babylonian algorithm to compute the square root of a number. The steps of the algorithm are 1. Get an input number 2. Compute an ini…
You are to write a program that includes and tests a function called strreplace
You are to write a program that includes and tests a function called strreplace (). The function strreplace () is to the designed such that it takes an input string from the user …
You are to write a program that reads lines of text from an input file until the
You are to write a program that reads lines of text from an input file until there are no more lines to read. As each line is read, your program should: Keep track of how many lin…
You are to write a program that reads one or more files, sorts the words in the
You are to write a program that reads one or more files, sorts the words in the files, and then prints each word prefixed by the number of times it appears in the files. For this …
You are to write a program that reads one or more files, sorts the words in the
You are to write a program that reads one or more files, sorts the words in the files, and then prints each word prefixed by the number of times it appears in the files. For this …
You are to write a program that reads two matrices from files, multiples them, a
You are to write a program that reads two matrices from files, multiples them, and displays outputs both to the terminal and a result file. To begin, we have a very easy file form…
You are to write a program that requests that the user inputs a fraction of the
You are to write a program that requests that the user inputs a fraction of the form n/d with d nonzero. Your program then prints out the fraction in reduced form. The program the…
You are to write a program that simulates playing the solitaire card game Clock.
You are to write a program that simulates playing the solitaire card game Clock. We provide several sites at the end of this document that describe and demonstrate the rules; we s…
You are to write a program that tests whether two words are anagrams (permutatio
You are to write a program that tests whether two words are anagrams (permutations of the same letters). Non-alphabetic characters are ignored and lowercase characters are treated…
You are to write a program that will accept as input the total square footage of
You are to write a program that will accept as input the total square footage of wall space of a room and the price of a gallon of paint. It will then return the number of gallons…
You are to write a program that will allow us to experiment with Square1 sequenc
You are to write a program that will allow us to experiment with Square1 sequences. I want you to add two procedures: (1) one called “terms” (called by the main program) whose j…
You are to write a program that will be used to look up the demographic informat
You are to write a program that will be used to look up the demographic information of a student Their are two files which I provide that contains the following information city.d…
You are to write a program that will deal with matrices. In particular you shoul
You are to write a program that will deal with matrices. In particular you should write a function that will prompt the user for a filename, open the file, and read in the matrix …
You are to write a program that will develop a user-defined function, which is c
You are to write a program that will develop a user-defined function, which is called from “main”. Your program calculates the number of the month(s) you need for making fixed-mon…
You are to write a program that will handle a cash register keeping up with sale
You are to write a program that will handle a cash register keeping up with sales, payment, change and a running total of cash in the cash register. The cash register will start w…
You are to write a program that will manipulate an array. Your program should ha
You are to write a program that will manipulate an array. Your program should handle up to 100 integer numbers. For each part below, write one or more functions (there are anumber…
You are to write a program that will manipulate an array. Your program should ha
You are to write a program that will manipulate an array. Your program should handle up to 100 integer numbers. Label the results for each printed out below. You will have several…
You are to write a program that will manipulate an array. Your program should ha
You are to write a program that will manipulate an array. Your program should handle up to 100 integer numbers. Label the results for each printed out below. You will have several…
You are to write a program that will multiply two numbers and print out the two
You are to write a program that will multiply two numbers and print out the two numbers and the results. Your program should handle up to 30 digit integer numbers. Your input for …
You are to write a program that will perform calculations with a 2-D array. Your
You are to write a program that will perform calculations with a 2-D array. Your program should handle 2-D array up to 100 by 100. (Dimension your array 100 by 100) You will need …
You are to write a program that will perform calculations with a two dimensional
You are to write a program that will perform calculations with a two dimensional array. You are to development the following functions to support this effort. Write a function for…
You are to write a program that will read a string from the keyboard and determi
You are to write a program that will read a string from the keyboard and determine if that string Is a palindrome. A palindrome is a word sentence that is spelled the same forward…
You are to write a program that will read names followed by single test grade. T
You are to write a program that will read names followed by single test grade. The very first line of the file has a single number which represents the max number of points to mak…
You are to write a program that will read up to 100 characters from stdin . It w
You are to write a program that will read up to 100 characters fromstdin. It will read in the characters, one at atime until the sentinel of '$' is reached. Your program muststore…
You are to write a program that will substitute one string for a new string thro
You are to write a program that will substitute one string for a new string throughout the text. There will be several sets of strings for this program assignment. The input file …
You are to write a program to assign seats on each flight for an airline\'s only
You are to write a program to assign seats on each flight for an airline's only flight with a capacity of 80 seats (20 rows, and 4 columns). Your program should display the follow…
You are to write a program to assign seats on each flight for an airline\'s only
You are to write a program to assign seats on each flight for an airline's only flight with a capacity of 80 seats (20 rows, and 4 columns). Your program should display the follow…
You are to write a program to compute the lengths of the sides of the triangle a
You are to write a program to compute the lengths of the sides of the triangle and the area of the triangle. The three vertices of the triangle are to be entered as x and y coordi…
You are to write a program to compute the payoff time for a loan. The inputs to
You are to write a program to compute the payoff time for a loan. The inputs to the program are the amount that the person will borrow, the annual percentage rate, and the amount …
You are to write a program to generate a table of factors only used to compute m
You are to write a program to generate a table of factors only used to compute monthly payments for money borrowed. The formula to calculate monthly payments is as follows where …