Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 1092 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Write a program that prints isosceles triangles using the character \'*\'. The n
Write a program that prints isosceles triangles using the character '*'. The number of rows forming the triangle is determined by the user. For instance, an isosceles triangle wit…
Write a program that prints messages for weather. The program will get Fahrenhei
Write a program that prints messages for weather. The program will get Fahrenheit degree from user input and print out following messages on the screen: If temperature in Fahrenhe…
Write a program that prints out a student grade report. There is a file, classes
Write a program that prints out a student grade report. There is a file, classes.txt, that contains the names of all classes taught at a college, such as classes.txt 1 CSC1 2 CSC2…
Write a program that prints out all prime numbers up to a value entered by the u
Write a program that prints out all prime numbers up to a value entered by the user. Begin the program by asking the user to enter an integer. Your program should then print out a…
Write a program that prints out all prime numbers up to a value entered by the u
Write a program that prints out all prime numbers up to a value entered by the user. Begin the program by asking the user to enter an integer. Your program should then print out a…
Write a program that prints out as many primes as required that are larger than
Write a program that prints out as many primes as required that are larger than a value (including starting number) given by a user. Note that the starting number must be positive…
Write a program that prints out as many primes as required that are larger than
Write a program that prints out as many primes as required that are larger than a value (including starting number) given by a user. Note that the starting number must be positive…
Write a program that prints out conversion tables for Celsius to Fahrenheit (0 t
Write a program that prints out conversion tables for Celsius to Fahrenheit (0 to 100) and Fahrenheit to Celsius (32 to 212). Use separate functions to convert Fahrenheit to Celsi…
Write a program that prints out the lists alter the following methods are called
Write a program that prints out the lists alter the following methods are called. Method minToFront: takes an Array List of integers as a parameter. The method moves the minimum v…
Write a program that prints out the number of words in textfiles. We will define
Write a program that prints out the number of words in textfiles. We will define a word to be any sequence of non-whitespace characters. So "hi&there...mom" would be considere…
Write a program that prints out the number of words in textfiles. We will define
Write a program that prints out the number of words in textfiles. We will define a word to be any sequence of non-whitespace characters. So "hi&there...mom" would be considere…
Write a program that prints the content of the instruction memory, in effect, di
Write a program that prints the content of the instruction memory, in effect, disassembling the program. Start with the default program memory address of 0x00400000; read words fr…
Write a program that prints the day number of the year, given the date in the fo
Write a program that prints the day number of the year, given the date in the form month-day-year. For example, if the input is 1-1-2006, the day number is 1; if the input is 12-2…
Write a program that prints the day number of the year, given the date in the fo
Write a program that prints the day number of the year, given the date in the form month-date-year. For example, if the input is 1-1-2008, the day number is 1; if the input is 12-…
Write a program that prints the day number of the year, given the date in the fo
Write a program that prints the day number of the year, given the date in the form month-day-year.For example, if the input is 1-1-2006, the day number is 1; if the input is12-25-…
Write a program that prints the day number of the year, given the date in the fo
Write a program that prints the day number of the year, given the date in the form month-day-year. For example, if the input is 1-1-2006, the day number is 1; if the input is 12-2…
Write a program that prints the day of the year,given the date in the format mon
Write a program that prints the day of the year,given the date in the format month-day-year.? For example,if the input is 1-1-2006, the day number is 1; if the input is 12-25-2006…
Write a program that prints the first few verses of the traveling song \"One Hun
Write a program that prints the first few verses of the traveling song "One Hundred Bottles of Beer." Use a loop such that each prints one verse. Read the number of verses to prin…
Write a program that prints the letters corresponding to the numbers on the tele
Write a program that prints the letters corresponding to the numbers on the telephone. So if you were to enter 6 it should print MNO. Now since you do not know how to do a System.…
Write a program that prints the monthly bill for one customer of a cellular phon
Write a program that prints the monthly bill for one customer of a cellular phone company. Your program should prompt the user to enter a customer number and the number of minutes…
Write a program that prints the monthly bill for one customer of a cellular phon
Write a program that prints the monthly bill for one customer of a cellular phone company. Your program should prompt the user to enter a customer number and the number of minutes…
Write a program that prints the number of words found in a text file. Words are
Write a program that prints the number of words found in a text file. Words are defined as sequences of characters separated by white space. (Hint: white space is defined as in th…
Write a program that prints the number of words found in a text file. Words are
Write a program that prints the number of words found in a text file. Words are defined as sequences of characters separated by white space. (Hint: white space is defined as in th…
Write a program that prints the number of words found in a text file. Words are
Write a program that prints the number of words found in a text file. Words are defined as sequences of characters separated by white space. (Hint: white space is defined as in th…
Write a program that prints the numbers from 1 to 10. Use the while statement an
Write a program that prints the numbers from 1 to 10. Use the while statement and one of the increment operators. Write a program that requests a trip distance in miles, a speed i…
Write a program that prints the pattern shapes below (A, B, C, D, E). Your progr
Write a program that prints the pattern shapes below (A, B, C, D, E). Your program must use loops (while, do-while, and/or for loops with nest-for). You may use System.out.printf(…
Write a program that prints the power of integer 2,namely 2, 4, 8, 16, 32, 64, e
Write a program that prints the power of integer 2,namely 2, 4, 8, 16, 32, 64, etc. Your while loop should not terminate (i.e., you should creatan infinite loop). To do this, simp…
Write a program that prints the total amount owed for a cart full of groceries t
Write a program that prints the total amount owed for a cart full of groceries to a text file, and saves the file to a folder on your computer's desktop named "Receipts". The prog…
Write a program that prints the total amount owed for a cart full of groceries t
Write a program that prints the total amount owed for a cart full of groceries to a tex file, and saves the file to a folder on your computers desktop named receipts.the program m…
Write a program that prints triangle shaped patterns using the numbers 1 through
Write a program that prints triangle shaped patterns using the numbers 1 through 9. The program will ask the user to enter a number in the range 1 through 9 that will be used as t…
Write a program that processes a list of strings using functions, arrays, and ve
Write a program that processes a list of strings using functions, arrays, and vectors. The program will read a list of strings from a file into an array. The array size is 30. You…
Write a program that processes a text data file of names in which each name is o
Write a program that processes a text data file of names in which each name is on a separate line of at most 80 characters. See two sample names below: Hartman-Montgomery, Jane R.…
Write a program that processes grades by converting number grades to letter grad
Write a program that processes grades by converting number grades to letter grades (we've looked at this before). Inside the an input file is a list of student names and number gr…
Write a program that processes grades by converting number grades to letter grad
Write a program that processes grades by converting number grades to letter grades (we've looked at this before). Inside the an input file is a list of student names and number gr…
Write a program that processes numbers, corresponding to student records read in
Write a program that processes numbers, corresponding to student records read in from a file, and writes the required results to an output file (see main ( )). Your program should…
Write a program that processes the command line parameters according to the usag
Write a program that processes the command line parameters according to the usage: transpose2 [-2] [-r] [-p d|x] n. This means the program can accept an optional parameter -2, fol…
Write a program that processes the data of a retail company with following requi
Write a program that processes the data of a retail company with following requirements: Define a new data type (struct) of Customer, with following members: ID, first name, last …
Write a program that processes the data of a retail company with following requi
Write a program that processes the data of a retail company with following requirements: Define a new data type (struct) of Customer, with following members: ID, first name, last …
Write a program that produces a bill and coin breakdown for an mount of money. I
Write a program that produces a bill and coin breakdown for an mount of money. Initialize the mount in the float variable dollars and use the pennies variable to keep track of the…
Write a program that produces a sales report for a salsa maker who markets 5 typ
Write a program that produces a sales report for a salsa maker who markets 5 types of salsa ("mild ", "medium", "sweet ", "hot ", "zesty "). The program includes total sales for a…
Write a program that produces a sales report for a salsa maker who markets 5 typ
Write a program that produces a sales report for a salsa maker who markets 5 types of salsa ("mild ", "medium", "sweet ", "hot ", "zesty "). The program includes total sales for a…
Write a program that produces random permutations of the numbers 1 to 10. eg. (1
Write a program that produces random permutations of the numbers 1 to 10. eg. (1,4,7,10,2,9,8,3,6,5) or (10,7,9,2,1,3,6,5,4,8) Your class should have the following methods: // Dis…
Write a program that produces ten random permutations of the numbers 1 to 10. To
Write a program that produces ten random permutations of the numbers 1 to 10. To generate a random permutation, you need to fill a vector with the numbers 1 to 10 so that no two e…
Write a program that produces ten random permutations of the numbers 1 to 10. To
Write a program that produces ten random permutations of the numbers 1 to 10. To generate a random permutation, you need to fill a vector with the numbers 1 to 10 so that no two e…
Write a program that produces the following logarithm table on screen. Note that
Write a program that produces the following logarithm table on screen. Note that the value x starts at 1, and the step (the difference of x between two rows) is determined by the …
Write a program that produces the following output using nested for loops: +----
Write a program that produces the following output using nested for loops: +------+ | ^^ | | ^ ^ | |^ ^| | ^^ | | ^ ^ | |^ ^| +------+ | vv | | v v | |v v| | vv | | v v | |v v| +-…
Write a program that produces various patterns of various sizes, as specified: W
Write a program that produces various patterns of various sizes, as specified: What patttern do you want me to draw: 4 What size do you want this pattern: 23 * * * * * * * * * * *…
Write a program that prompts a user for a filename of an existing file that cont
Write a program that prompts a user for a filename of an existing file that contains 10 lines of student names. Assume that names are of equal length and they are inserted into a …
Write a program that prompts a user for an hourly pay rate. The program should j
Write a program that prompts a user for an hourly pay rate. The program should justify the following conditions: If the user enters values less than $5.65 or greater than $49.99, …
Write a program that prompts a user for an integer value in the range 0 to 32,76
Write a program that prompts a user for an integer value in the range 0 to 32,767 and then prints the individual digits of the numbers on a line with three spaces between the digi…