Web development and programming
191828 questions • Page 3658 / 3837
in C++ Prompt the user to enter a string of their choosing. Output the string. E
in C++ Prompt the user to enter a string of their choosing. Output the string. Ex: Enter a sentence or phrase: The only thing we have to fear is fear itself. You entered: The only…
in C++ Sample Interaction This is a sample interaction for the program before do
in C++ Sample Interaction This is a sample interaction for the program before doing Task 3: Enter a pair of positive x, then y coordinates, separated by spaces, or '0 0' to stop: …
in C++ Start with the polynomial.cpp file provided. This is a basic outline of t
in C++ Start with the polynomial.cpp file provided. This is a basic outline of the class, which reads the in the polynomial from the keyboard. You must overload the multiplication…
in C++ This is part of a series of functions that take in input from a file of 1
in C++ This is part of a series of functions that take in input from a file of 150 random non repeating numbers. Takes 10 numbers that the user enters, 5 of those numbers are in t…
in C++ Tic-Tac-Toe, also called X\'s and O\'s, Noughts and Crosses, and X and 0
in C++ Tic-Tac-Toe, also called X's and O's, Noughts and Crosses, and X and 0 is a simple game played on a 3x3 grid, referred to as the board. Lines may be horizontal, vertical, o…
in C++ We take for granted all the place that we see arrays on a daily basis. On
in C++ We take for granted all the place that we see arrays on a daily basis. One that I know I'm sure familiar with is the one I interact with on my commute as I aimlessly scan t…
in C++ Write a class named Coin. The Coin class should have the following member
in C++ Write a class named Coin. The Coin class should have the following member variables: A string named sideUp. The sideUp member variable will holder either "heads" or "tails"…
in C++ Write a recursive, int -valued function named productOfOdds that accepts
in C++ Write a recursive, int -valued function named productOfOdds that accepts an integer array , and the number of elements in the array and returns the product of the odd-value…
in C++ You will need to create two vectors of strings, one for first names, and
in C++ You will need to create two vectors of strings, one for first names, and one for last names. You will then read in first and last names and place these into vectors. See ex…
in C++ and with comments please Write a function that accepts an int array and t
in C++ and with comments please Write a function that accepts an int array and the array’s size as arguments. The function should create a new array that is one element larger tha…
in C++ i need help finishing the last 2 queations ( 2 and 3 ) Here is what code
in C++ i need help finishing the last 2 queations ( 2 and 3 ) Here is what code i already have: #include<stdio.h> #include<conio.h> void main() { FILE *fp; char *sfnam…
in C++ is this how I declare the 2d dynamic vector? vector>matrix; how do i popu
in C++ is this how I declare the 2d dynamic vector? vector>matrix; how do i populate the vector ,print it , find the rows and print the major diagnols with 1s program prompts t…
in C++ language please. (Airline Reservations System) A small airline has just p
in C++ language please. (Airline Reservations System) A small airline has just purchased a computer for its new au- tomated reservations system. You have been asked to develop the…
in C++ language... Can someone please review my function for deleting nodes from
in C++ language... Can someone please review my function for deleting nodes from a binary tree? Is my last part correct? Thanks **when i went to test...I am unable to remove a nod…
in C++ please 3.1 String-representation tttresult Write a function with the foll
in C++ please 3.1 String-representation tttresult Write a function with the following signature char tttresult (string tttboard); The string tttboard has nine characters represent…
in C++ why am i not geting the desired ouput write a recursice function to compu
in C++ why am i not geting the desired ouput write a recursice function to compute the following series: m(i)=1/3+2/5+3/7+4/9+4/11+6/13........+i/2i+1 this is my code below #inclu…
in C++ with this criteria How well is the program structured? For example, are t
in C++ with this criteria How well is the program structured? For example, are there divisions into smaller tasks/functions? How well is the program documented? For example, how w…
in C++ write a program that simulates one turn of the Monopoly game example. For
in C++ write a program that simulates one turn of the Monopoly game example. For this program, only the following squares exist: RegularSquare, GoSquare, IncomeTaxSquare, JailSqua…
in C++ write the progarm with the two functions The Sieve of Eratosthenes and Go
in C++ write the progarm with the two functions The Sieve of Eratosthenes and Gold Bach's Conjecture Implement the Sieve of Eratosthenes and use it to find all prime numbers less …
in C+++ Write a program that allows an unlimited number of values to be entered
in C+++ Write a program that allows an unlimited number of values to be entered and stored in an array allocated in the free store. The program should then output the values, five…
in C++, I must input 3 weather values (temperature low, temperature high, rain)
in C++, I must input 3 weather values (temperature low, temperature high, rain) and output the following: days reported, min temp, max temp, avg low, avg high, total rain and numb…
in C++, Write a program that creates a table for the user\'s choice of basic mat
in C++, Write a program that creates a table for the user's choice of basic math operations (+, -, *, /, and %). These operations will all be performed in an integer-only way. (Mo…
in C++, elements are read in from a text file. first term sets array size. Merge
in C++, elements are read in from a text file. first term sets array size. MergeSort Description Implement the mergesort algorithm for sorting an array of integers. Input structur…
in C++, please read all of instruction before starting. I put some text in bold
in C++, please read all of instruction before starting. I put some text in bold because those are important. Please help me.. Design a PayRoll class that has data members for an e…
in C++. Please correct the following program so it works as the following: The p
in C++. Please correct the following program so it works as the following: The program is reading the text file and displaying correctly, It just needs to know which line says cor…
in C++. Thanks Problem 1.2 Write one program containing all these string exercis
in C++. Thanks Problem 1.2 Write one program containing all these string exercises. Exercise 1.2.1 Read a string from the user into a string named string1. Test it with th…
in C++. Write a structure that maps the information of an employee. This informa
in C++. Write a structure that maps the information of an employee. This information is SSN, firstName, lastName, Salary, deparment_no Where deparment_no is the department number …
in C++. please put comments. spaceing between lines (Simulation: coupon collecto
in C++. please put comments. spaceing between lines (Simulation: coupon collectors problem) Coupon collector is a classic statistic problem with many practical applications. The p…
in C: How to change the code at the very bottom to look exactly like the code th
in C: How to change the code at the very bottom to look exactly like the code that are in bold below? Do not use BREAK and fflush(stdin) .Also the code should Sets invoking approp…
in C: Tower of Hanoi: A very popular mathematical game or puzzle is referred to
in C: Tower of Hanoi: A very popular mathematical game or puzzle is referred to as the Tower of Hanoi. The idea behind the game is to find an efficient method for moving disks bet…
in C; 6. (10 bonus pts): Write a function that returns the number of integer pai
in C; 6. (10 bonus pts): Write a function that returns the number of integer pairs from an array that sum to a specified number. The input array is sorted in ascending order and c…
in Chapter 4 you created a Die class from which you could instantiate an object
in Chapter 4 you created a Die class from which you could instantiate an object containing a random value from 1 through 6. You also wrote an application that randomly "throws" tw…
in Figure rite a statement that displays the default value of 4.99 in the input
in Figure rite a statement that displays the default value of 4.99 in the input box shown retun value from the InputBox function to a variable named decHappyMeal with the mesd 6-1…
in HTML and JS I try to do a remove button in js function, what should I do here
in HTML and JS I try to do a remove button in js function, what should I do here // single state store class Store { constructor (storage) { this.storage = storage; // assuming lo…
in HTML and JS I try to do a remove button in js function, what should I do here
in HTML and JS I try to do a remove button in js function, what should I do here I need to fill the removeItem() function under Cart class // single state store class Store { cons…
in JAVA -- need to use an arraystack for this and can only manipulate smartstrin
in JAVA -- need to use an arraystack for this and can only manipulate smartstring.java aka the one that says : public class SmartString implements SmartStringADT at …
in JAVA : for this assignment we will be generating signatures and validating si
in JAVA : for this assignment we will be generating signatures and validating signatures using our ssh keys. we will be using RSA keys to do the signing and validation. you will w…
in JAVA : for this assignment we will be generating signatures and validating si
in JAVA : for this assignment we will be generating signatures and validating signatures using our ssh keys. we will be using RSA keys to do the signing and validation. you will w…
in JAVA Design and implement a method height for BinarySearchTree, that returns
in JAVA Design and implement a method height for BinarySearchTree, that returns the height of the tree and - uses recursion. - does not use recursion. //--------------------------…
in JAVA JAVA PLEASE JAVA********************* PLEASE READ ******************** p
in JAVA JAVA PLEASE JAVA********************* PLEASE READ ******************** please follow instructions and do as asked in JAVA JAVA JAVA JAVA I have this program that my profes…
in JAVA Write an astrology program. The user will give their birthday as a month
in JAVA Write an astrology program. The user will give their birthday as a month number (1 – 12) and then a day number (1 – 31). Your program will then output the person's astrolo…
in JAVA language, I need a PSUEDOCODE/ALGORITHM for each one of these problems.
in JAVA language, I need a PSUEDOCODE/ALGORITHM for each one of these problems. DO NOT give me a program. ONLy psuedocode/ALGORITHM PLEASE :) Thanks! Also I am a beginner so pleas…
in JAVA why my code is not running Scanner k = new Scanner(System.in); System.ou
in JAVA why my code is not running Scanner k = new Scanner(System.in); System.out.println("Please enter a string: "); String str = k.nextLine(); System.out.println("Please ente…
in JAVA, I need to make the following code from infix to postfix for 2 stacks in
in JAVA, I need to make the following code from infix to postfix for 2 stacks in order to calculate such as (2+3*5)-8/5*(5-2). The following code is to calculate only 1 stack such…
in JAVA, why my code can run, but it does not show any files on my desktop. Scan
in JAVA, why my code can run, but it does not show any files on my desktop. Scanner k = new Scanner(System.in); System.out.println(" Please enter the first filename: "); String fi…
in JAVA. Any help would be greatly appreciated. Even a step by step list explain
in JAVA. Any help would be greatly appreciated. Even a step by step list explaining how to do this would be great too. Ocean County College Ocean Connect × Lab 6-Using Arrays × //…
in JAVA: Create the following class. Read the entire question first! Write a cla
in JAVA: Create the following class. Read the entire question first! Write a class Distance with the following specifications: Class variables: a private static integer called INC…
in Java (ignore the last line thats hidden) Create a doubly linked list whose no
in Java (ignore the last line thats hidden) Create a doubly linked list whose nodes contain Strings. Your list should include the following methods: Insert a node in the list in a…
in Java - Create a folder called pgm1 - In your folder pgm1, USING A WINDOWS EDI
in Java - Create a folder called pgm1 - In your folder pgm1, USING A WINDOWS EDITOR, create a java program named Your lastName, firstLetterOfYourFirstName, pgm1W.java that will do…
in Java 1 class Map 2 { 3 public Map( ) 4 5 public void put( KeyType key, ValueT
in Java 1 class Map 2 { 3 public Map( ) 4 5 public void put( KeyType key, ValueType val ) 6 public ValueType get( KeyType key ) 7 public boolean isEmpty( ) 8 public void makeEmpty…
Subject
Web development and programming
Use Browse or pick another subject.