Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1045 / 1333
Write a program as follows. Define a pointer to character, named cp. Next, use m
Write a program as follows. Define a pointer to character, named cp. Next, use malloc() to allocate enough memory to hold 26 characters (For this, you should assign the return val…
Write a program as instructed in your textbook on page 224, #20. Display a menu
Write a program as instructed in your textbook on page 224, #20. Display a menu along with meaning u instructions. Ask the user for the distance in feet (Accept floating point val…
Write a program at address 0 times 100 in PIC18F assembly language to add two 32
Write a program at address 0 times 100 in PIC18F assembly language to add two 32-bit packed BCD numbers. BCD number 1 is stored in data registers starting from 0 times 20 through …
Write a program based on 8_lb that reads in the integer data from \"input.txt\"
Write a program based on 8_lb that reads in the integer data from "input.txt" into a vector. Please prompt for the file name and append the "txt". Then create another vector where…
Write a program based on the example code provide below to accomplish: 1. Create
Write a program based on the example code provide below to accomplish: 1. Create integer variable grade, ask user input the value of grade. 2. Assign a char variable named “course…
Write a program by using the following code to accept three input scores and dis
Write a program by using the following code to accept three input scores and display to output the average. Note: use java swing import feature Part I import javax.swing. JOptionP…
Write a program c++ to compute the power of base raised to an exponent expo simi
Write a program c++ to compute the power of base raised to an exponent expo similar to the pow function. Your program should ask for the base which can be a decimal and the expone…
Write a program calc.c that implements a simple arithmetic calculator. Input to
Write a program calc.c that implements a simple arithmetic calculator. Input to the calculator consists of lines composed of integer constants separated by the five arithmetic ope…
Write a program call FancyMyName which asks you to write a program that tests an
Write a program call FancyMyName which asks you to write a program that tests and using thedifferent methods for working with Strings. This program will ask the user to enter thei…
Write a program called A1Q2, that calculates the energy needed to heat water fro
Write a program called A1Q2, that calculates the energy needed to heat water from an initial temperature to a final temperature. Your program should prompt the user to enter the v…
Write a program called Assg4.java to solve the following problem. Write a progra
Write a program called Assg4.java to solve the following problem. Write a program to solve the following problem. Given a small integer (e.g. 78), we can reverse it (giving 87) an…
Write a program called Average.java that prompts a user to enter a number, and a
Write a program called Average.java that prompts a user to enter a number, and allows the user to continue to enter numbers until she responds with a negative number. At that poin…
Write a program called BankAccount. Java. This program contains the following me
Write a program called BankAccount. Java. This program contains the following methods: 1) Database Methods a. initializeDB Makes a connection to the database and returns connectio…
Write a program called BankAccount. Java. This program contains the following me
Write a program called BankAccount. Java. This program contains the following methods: 1) Database Methods a. initializeDB Makes a connection to the database and returns connectio…
Write a program called BankAccount.Java. This program contains the following met
Write a program called BankAccount.Java. This program contains the following methods: 1) Database Methods a. initializeDB : Makes a connection to the database and returns connecti…
Write a program called Caesar.java that will decode a message that has been \"sh
Write a program called Caesar.java that will decode a message that has been "shifted" (or moved over) by three characters. One nice trick is because a char in Java is actually rep…
Write a program called ColumnSorting that asks the user to enter a 3-by-3 array
Write a program called ColumnSorting that asks the user to enter a 3-by-3 array of doubles, entering the values one row at a time. The program then displays the array with each co…
Write a program called Compute PI to compute the value of pi, using the followin
Write a program called Compute PI to compute the value of pi, using the following series expansion. You have to decide on the termination criterion used in the computation (such a…
Write a program called ComputeGPA to compute a GPA from letter grades. Write the
Write a program called ComputeGPA to compute a GPA from letter grades. Write the program so that it: Declares and creates a symbol table using the algs31.BinarySearchST class; Fil…
Write a program called CountLetters. java that prompts the user for the name of
Write a program called CountLetters. java that prompts the user for the name of a text file, reads in all of the text in that file, and then computes and prints a table of letter …
Write a program called CountOccurrences that asks a user to enter ten integers b
Write a program called CountOccurrences that asks a user to enter ten integers between 1 and 100. Your program will store the integers into an array and then count the occurrences…
Write a program called CountOccurrences that asks a user to enter ten integers b
Write a program called CountOccurrences that asks a user to enter ten integers between 1 and 100. Your program will store the integers into an array and then count the occurrences…
Write a program called Fahrenheit2Celsius that converts a temperature in Fahrenh
Write a program called Fahrenheit2Celsius that converts a temperature in Fahrenheit to Celcius.Your program must declare two double variables named fahrenheit and celcius and one …
Write a program called FindPath.java to solve the following problem. The program
Write a program called FindPath.java to solve the following problem. The program will be given an input consisting of a series of positive integers separated by white space repres…
Write a program called Grader_LastNameFirstName.cpp that processes the True/Fals
Write a program called Grader_LastNameFirstName.cpp that processes the True/False data from a file called “testinformation.txt”. The students’ IDs and test answers are stored in a…
Write a program called GradesAverage, which prompts user for the number of stude
Write a program called GradesAverage, which prompts user for the number of students, reads it from the keyboard, and saves it in an int variable called numStudents. It then prompt…
Write a program called GradesAverage, which prompts user for the number of stude
Write a program called GradesAverage, which prompts user for the number of students, reads it from the keyboard, and saves it in an int variable called numStudents. It then prompt…
Write a program called GuessingGame.java with a main method that generates a ran
Write a program called GuessingGame.java with a main method that generates a random number between 1 and 100, then allows the user 10 attempts to guess the number. Each time he or…
Write a program called InheritanceTest.java to support an inheritance hierarchy
Write a program called InheritanceTest.java to support an inheritance hierarchy for class Point-Square-Cube. Use Point as the superclass of the hierarchy. Specify the instance var…
Write a program called InsertionSortBenchmark that automatically generates a tab
Write a program called InsertionSortBenchmark that automatically generates a table of sample run times for the insertion sort algorithm. The program should ask for the smallest an…
Write a program called InsertionSortBenchmark that automatically generates a tab
Write a program called InsertionSortBenchmark that automatically generates a table of sample run times for the insertion sort algorithm. The program should ask for the smallest an…
Write a program called IsPrime.cpp that generates a list of all prime numbers fr
Write a program called IsPrime.cpp that generates a list of all prime numbers from 1 to 100 (inclusive). In your program, implement a function isPrime () that returns a Boolean va…
Write a program called Lab6 that prompts the user to enter two integers; store t
Write a program called Lab6 that prompts the user to enter two integers; store these inputs in variables. Then compute the sum and product of the integers and display the results …
Write a program called P4.c that creates an original Square Matrix containing in
Write a program called P4.c that creates an original Square Matrix containing integers and then creates a new one with the values of the original reversed. The program should prom…
Write a program called PWriter that takes input from a file and places it one it
Write a program called PWriter that takes input from a file and places it one item at a time into a named pipe called "Mypiper". Write a second program called PReader that takes i…
Write a program called PalinPerfect.java that finds all palindrome perfect squar
Write a program called PalinPerfect.java that finds all palindrome perfect squares between two integers supplied as input (start and end points are excluded). A palindrome number …
Write a program called PickMessagePlan.java to decide which of two message plans
Write a program called PickMessagePlan.java to decide which of two message plans will have a lower fee for someone's estimated average monthly usage. The structure of the fee plan…
Write a program called PlaySimpleSong to play a song represented as notes in tex
Write a program called PlaySimpleSong to play a song represented as notes in text. Write the program so that it: Declares and creates a symbol table using the algs31.BinarySearchS…
Write a program called PostfixToInfix.java to solve the following problem. Write
Write a program called PostfixToInfix.java to solve the following problem. Write a program to read in a postfix expression and output a corresponding infix expression. You may use…
Write a program called PostfixToInfix.java to solve the following problem. Write
Write a program called PostfixToInfix.java to solve the following problem. Write a program to read in a postfix expression and output a corresponding infix expression. You may use…
Write a program called Program1 with a main method that asks the user for his or
Write a program called Program1 with a main method that asks the user for his or her pay rate and the number of hours he or she worked this week. Then the main method should call …
Write a program called Program1 with a main method that asks the user for his or
Write a program called Program1 with a main method that asks the user for his or her pay rate and the number of hours he or she worked this week. Then the main method should call …
Write a program called Program1 with a main method that asks the user for his or
Write a program called Program1 with a main method that asks the user for his or her pay rate and the number of hours he or she worked this week. Then the main method should call …
Write a program called RentalRate.java which reads in a date of birth, today’s d
Write a program called RentalRate.java which reads in a date of birth, today’s date and a male/female designation from the user, and will then determine the basic daily and weekly…
Write a program called RentalRate.java which reads in a date of birth, today’s d
Write a program called RentalRate.java which reads in a date of birth, today’s date and a male/female designation from the user, and will then determine the basic daily and weekly…
Write a program called Roman.java that takes a positive integer between (but not
Write a program called Roman.java that takes a positive integer between (but not including) 0 and 4000 and converts it to Roman Numerals. If you need help with what the Roman nume…
Write a program called Roman.java that takes a positive integer between (but not
Write a program called Roman.java that takes a positive integer between (but not including) 0 and 4000 and converts it to Roman Numerals. If you need help with what the Roman nume…
Write a program called Roman.java that takes a positive integer between (but not
Write a program called Roman.java that takes a positive integer between (but not including) 0 and 4000 and converts it to Roman Numerals. If you need help with what the Roman nume…
Write a program called SearchText. java that: 1. Prompts the user for a text fil
Write a program called SearchText. java that: 1. Prompts the user for a text file pathname. 2. Prompts the user for a search string. 3. Reads in all of the text in the file. 4. Sp…
Write a program called Sets.java that reads two sets of numbers from the keyboar
Write a program called Sets.java that reads two sets of numbers from the keyboard and prints the intersection of the two sets in any order (without duplicates), and prints the uni…