Web development and programming
191828 questions • Page 3817 / 3837
write a program that outputs a menu and reads a shape choice (circle, rectangle,
write a program that outputs a menu and reads a shape choice (circle, rectangle, or triangle). The program should then prompt for the appropriate dimensions and calculate the area…
write a program that outputs inflation rates for two successive years and whethe
write a program that outputs inflation rates for two successive years and whether the inflation is increasing or decreasing.Ask the user to input the current price of an item and …
write a program that plays a dice game with the user. Here are the rules. The ga
write a program that plays a dice game with the user. Here are the rules. The game is about repeated "throws" of a pair of dice. Each die has six faces, numbered 1 through 6. A th…
write a program that plays a reverse guessing game with the user.the user think
write a program that plays a reverse guessing game with the user.the user think of a number between 1 and 10,and the computer repeatedly tries to guess it by guessing random numbe…
write a program that plays a reverse guessing game with the user.the user think
write a program that plays a reverse guessing game with the user.the user think of a number between 1 and 10,and the computer repeatedly tries to guess it by guessing random numbe…
write a program that playsthe popular scissor-rock-paper game. The p rogram rand
write a program that playsthe popular scissor-rock-paper game. The p rogram randomlygenerates a number 0,1,2 representing scissor rock paper. Theprogram prompts a user to display …
write a program that prints all the happy numbers that are less than or equal to
write a program that prints all the happy numbers that are less than or equal to 1000. Here’s what these numbers look like: · · · A list of these numbers can be found online and y…
write a program that prints out a calendar for a full year between 1900-2500 Jan
write a program that prints out a calendar for a full year between 1900-2500 January 1994 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26…
write a program that prints the following diamond shape. Youmay use output state
write a program that prints the following diamond shape. Youmay use output statements that print either a single asterisk (*)or a single blank. Maximize your use of repetition (wi…
write a program that produces as output the words of \"The House That Jack Built
write a program that produces as output the words of "The House That Jack Built." Use methods for each verse and for repeated text. Here are lyrics to use: This is the house that …
write a program that promps the user to enter an integer andthen prints the inte
write a program that promps the user to enter an integer andthen prints the integer first as a character, then as a decimal,and finally as float. Use separate print statements. A …
write a program that prompts and reads a list of non-negative numbers (floats) i
write a program that prompts and reads a list of non-negative numbers (floats) into an array, finds the minimum value in the array and subtracts the minimum value from each array …
write a program that prompts and reads a list of non-negative numbers (floats) i
write a program that prompts and reads a list of non-negative numbers (floats) into an array, finds the minimum value in the array and subtracts the minimum value from each array …
write a program that prompts for and accepts input of test ggrades that are inte
write a program that prompts for and accepts input of test ggrades that are integers between 0 and 100. For each numerical test grade, your program should display a corresponding …
write a program that prompts the user for a filename, opens thefile, and prints
write a program that prompts the user for a filename, opens thefile, and prints its contents to the screen one word perline. You must use a function called filePrint to do the act…
write a program that prompts the user for a string and then printsthe string rev
write a program that prompts the user for a string and then printsthe string reversed. You may assume the word entered will notbe more than 19 characters long. Declare your string…
write a program that prompts the user to enter 10 numbers, and thenprint the num
write a program that prompts the user to enter 10 numbers, and thenprint the numbers in reverse order; print the average of the numbers;and print the smallestand the largest numbe…
write a program that prompts the user to enter a social security number in the f
write a program that prompts the user to enter a social security number in the format ddd-dd-dddd, where d is a digit. here are sample example runs: Enter a SSS: 232-23-5435 232-2…
write a program that prompts the user to provide single character from the alpha
write a program that prompts the user to provide single character from the alphabet. Print vowel or consonant depending on the user input. The program prints error if the user inp…
write a program that prompts the user, within a while loop, for a birth month an
write a program that prompts the user, within a while loop, for a birth month and birth year,and than calculate and display the corresponding age. Note:do the initial prompt outsi…
write a program that read a list of names and telephone numbers from a text file
write a program that read a list of names and telephone numbers from a text file and inserts them into an AVL tree. Once the tree has built, present the user with a menu that allo…
write a program that reads a data file called RandNumLond.dat. This file contain
write a program that reads a data file called RandNumLond.dat. This file contains no more than 1,000 integers, with one integer value each line. The value of each integer ranges f…
write a program that reads a student\'s name together with his or her test score
write a program that reads a student's name together with his or her test scores. The program schould then compute theaverage test score for each student and assign the appropriat…
write a program that reads a student\'s name together with hisor her test scores
write a program that reads a student's name together with hisor her test scores. The program schould then compute theaverage test score for each student and assign the appropriate…
write a program that reads and prints the average of numbers input by a user. yo
write a program that reads and prints the average of numbers input by a user. you do not know the numbers and how many numbers. your program must follow this procedure: a) print t…
write a program that reads data from a file, calculates statistics on that data,
write a program that reads data from a file, calculates statistics on that data, and then outputs the statistics to either another file or to the screen, depending on what the use…
write a program that reads grades in the integer range 1 – 100 from a file, writ
write a program that reads grades in the integer range 1 – 100 from a file, writes out the grades, computes their average, and finds out how many grades are above average and how …
write a program that reads in a line consisting of a student\'s name, social sec
write a program that reads in a line consisting of a student's name, social security number, user ID, and password. The program outputs the string in which all digits of the socia…
write a program that reads in a sentence of up to 100 characters and outputs the
write a program that reads in a sentence of up to 100 characters and outputs the sentence with spacing corrected and with letters corrected for capitalization... The sentence shou…
write a program that reads in a sequence of numbers (not necessary integers) fro
write a program that reads in a sequence of numbers (not necessary integers) from standard input until 0 is read, and store them in an array (including 0). This is done using iter…
write a program that reads in a sequence of numbers (not necessary integers) fro
write a program that reads in a sequence of numbers (not necessary integers) from standard input until 0 is read, and store them in an array (including 0). This is done using iter…
write a program that reads in a set of positive integers,representing test score
write a program that reads in a set of positive integers,representing test scores for a class, and outputs how many times aparticular number appears in the list. you may assume th…
write a program that reads in a set of positive integers,representing test score
write a program that reads in a set of positive integers,representing test scores for a class, and outputs how many times aparticular number appears in the list. you may assume th…
write a program that reads in climate data (imagine it is coming from a weather
write a program that reads in climate data (imagine it is coming from a weather station) and stores that data in a linked list. After reading and storing all of the data your prog…
write a program that reads in three strings and sorts them lexicographically. en
write a program that reads in three strings and sorts them lexicographically. enter three strings: Charlie Able Baker Able Baker Charlie
write a program that reads in two dates (using three integers for each) and disp
write a program that reads in two dates (using three integers for each) and displays a message showing the date that comes first. Use the followingalgorithm: if the first date's y…
write a program that reads in two dates (using three integers for each) and disp
write a program that reads in two dates (using three integers for each) and displays a message showing the date that comes first. Use the following algorithm: if the first date's …
write a program that reads values representing the weight in kilogram, grams and
write a program that reads values representing the weight in kilogram, grams and kilograms and then prints the equivalent in milligrams ( for example, 1kilogram, 50 grams, and 42 …
write a program that reads values representing the weight in kilograms Assignmen
write a program that reads values representing the weight in kilograms Assignments 3 1 Write a program that reads values representing the weigh kilograms, grams, and milligr ams a…
write a program that readsin an integer number from the keyboard. If the number
write a program that readsin an integer number from the keyboard. If the number isbetween 1 and 10 (inclusive), the program prints on the monitor atree of asterisks ('*') where th…
write a program that requires the number of bits for the exponent and significan
write a program that requires the number of bits for the exponent and significant of a floating point representation, then requires two decimal real numbers and an operation,sum,s…
write a program that runs on a visual studio ,you have to write a program that t
write a program that runs on a visual studio ,you have to write a program that takes as input from the user a single 4 - digit integer. you can assume that this number will always…
write a program that scans from a file and finds the following information: a. f
write a program that scans from a file and finds the following information: a. finds how many integers in file , for example ( 40 20 20 20) it should say 4 , if its like (2 22 2 1…
write a program that ses threads and synchronization. As a result, you will get
write a program that ses threads and synchronization. As a result, you will get experience in writing a program that actually runs in parallel on lenix using threads (pthreads) an…
write a program that simulates a bank. The program will prompt the user asking i
write a program that simulates a bank. The program will prompt the user asking if they want to run the program again. If yes, then start the program over. If no, then terminate th…
write a program that simulates a bank. The program will prompt the user asking i
write a program that simulates a bank. The program will prompt the user asking if they want to run the program again. If yes, then start the program over. If no, then terminate th…
write a program that simulates a lottery. The program should have an array of 5
write a program that simulates a lottery. The program should have an array of 5 integers named WinningDigits, with a randomly generated number in the range of 0 through 9 for each…
write a program that simulates a lottery. The program should have an array of 5
write a program that simulates a lottery. The program should have an array of 5 integers named WinningDigits, with a randomly generated number in the range of 0 through 9 for each…
write a program that simulates a lottery. the program should have an array of fi
write a program that simulates a lottery. the program should have an array of five integers named winningdigits, with a randomly generated number in the range 0-9 for each element…
write a program that simulates the \"Guess a number\" game. first the program ge
write a program that simulates the "Guess a number" game. first the program generates a random integer between 1 and 100. it then asks the user to enter a guess (between 1 and 100…
Subject
Web development and programming
Use Browse or pick another subject.