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

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 39 / 1624

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
C++ #include #include #include using namespace std;
C++ #include <iostream> #include <cmath> #include <iomanip> using namespace std; int main() { int num1; int num2;    cout << fixed << showpoint <&…
C++ #include #include #include using namespace std
C++ #include <iostream> #include <iomanip> #include <string> using namespace std; int sumVotes(int list[], int size); int winnerIndex(int list[], int size); int …
C++ #include #include using namespace std; const int MAXSIZ
C++ #include <iostream> #include <sstream> using namespace std; const int MAXSIZE = 5; class Stack {    public:       Stack();       bool Empty();       void Push(int …
C++ #include #include using namespace std; #define MAX_SIZ
C++ #include <iostream> #include <string.h> using namespace std; #define MAX_SIZE    50        // Define maximum length of the queue class Queue {     private:        …
C++ #include using namespace std; //template definition template
C++ #include <iostream> using namespace std; //template definition template<typename T> void BubbleSort(T* array, size_t count); void showArray(int [], int); int main(…
C++ #include using namespace std; const int MAXSIZE = 20; class Stack
C++ #include <iostream> using namespace std; const int MAXSIZE = 20; class Stack {    public:       Stack();       bool Empty();       void Push(int item);       void Pop();…
C++ ( please help this is my second time posting) Do programming exercise top_di
C++ ( please help this is my second time posting) Do programming exercise top_div_array.cpp: Winning Division app (top_div.cpp) revisited to use arrays This is the same program do…
C++ ( take as much as time you need, but the deadline of this program is on 16th
C++ ( take as much as time you need, but the deadline of this program is on 16th so please finish it before that, thank you so much my teacher is killing us with codes like this i…
C++ ( tic tac toe game) implement all the following methods in a separate file t
C++ ( tic tac toe game) implement all the following methods in a separate file ticTacToe.cpp where 2 human beings play against each other the main is given //Header file TITTTTTTT…
C++ (1) 1. (4 points) Briefly describe the slicing problem, and how to overcome
C++ (1) 1. (4 points) Briefly describe the slicing problem, and how to overcome it. 2. (15 points, 1 point each) True/False. Clearly circle either "TRUE" or "FALSE" for each ques-…
C++ (1) Prompt the user for a title for data. Output the title. (1 pt) Ex: (2) P
C++ (1) Prompt the user for a title for data. Output the title. (1 pt) Ex: (2) Prompt the user for the headers of two columns of a table. Output the column headers. (1 pt) Ex: (3)…
C++ (1). Implement a doubly linked list that can perform the following: insert (
C++ (1). Implement a doubly linked list that can perform the following: insert (inserts elements), delete(deletes the elements), display (displays the numbers) (2). Based on doubl…
C++ (3) 5. (2 points) The include directive (a) tells the compiler what file to
C++ (3) 5. (2 points) The include directive (a) tells the compiler what file to process after the current file is finished (b) pastes the contents of the included at the directive…
C++ (4) 10. (6 points) 3) Given the code fragment below, each occurrence of cons
C++ (4) 10. (6 points) 3) Given the code fragment below, each occurrence of const is a promise to the compiler that the compiler will enforce. For each of the three cases, explain…
C++ (Addresses): a.) In main( ), declare 3 ints and set them to the values of 10
C++ (Addresses): a.) In main( ), declare 3 ints and set them to the values of 10, 20 and 30. Then print out the address of each of these 3 ints. What do you get??? b.) Now add a p…
C++ (Array) Tic-Tac-Toe Game Write a program that allows two players to play a g
C++ (Array) Tic-Tac-Toe Game Write a program that allows two players to play a game of tic-tac-toe. Using a two-dimensional char array with three rows and three columns as the gam…
C++ (Card Shuffling and Dealing) Create a program to shuffle and deal a deck of
C++ (Card Shuffling and Dealing) Create a program to shuffle and deal a deck of cards. The program should consist of class Card, class DeckOfCards and a driver program. Class Card…
C++ (Code::Block) Overview For this assignment you will be creating a multi-file
C++ (Code::Block) Overview For this assignment you will be creating a multi-file project in which you implement your own templated linked list and use it to create a simple list o…
C++ (Count vowels and consonants, file input, nested-loops, switch statement) As
C++ (Count vowels and consonants, file input, nested-loops, switch statement) Assume that letters A, E, I, O and U are the vowels. Write a program that reads strings from a text f…
C++ (Data Structure) Unsorted and Sorted lists. I\'m confused with an Unsorted a
C++ (Data Structure) Unsorted and Sorted lists. I'm confused with an Unsorted and Sorted list implementation. I already have created an Unsorted list program by watching videos an…
C++ (Data structure) develop a simple database system. using AVL tree as the mai
C++ (Data structure) develop a simple database system.  using AVL tree as the main data structure. You are in full control of the choice of data structures (except the main data s…
C++ (Functions) Run the program to see how it executes. Edit the program to get
C++ (Functions) Run the program to see how it executes. Edit the program to get the program to produce the same values for n1 and n2 after the function doStuff has executed. i.e p…
C++ (In each of the operations, there are comments within /* */ and // which sta
C++ (In each of the operations, there are comments within /*   */ and // which states what each operation is looking for and some of the implementations has already been started. …
C++ (Intro to Programming 2). Hello! I was wondering if someone would be able to
C++ (Intro to Programming 2). Hello! I was wondering if someone would be able to help with this problem. The code that is listed below complies the only thing I need help figuring…
C++ (Only need the new Hash Table ADT operation -standardDeviation- part impleme
C++   (Only need the new Hash Table ADT operation -standardDeviation- part implemented. ) Please implement the following function using the information below. Thank you! Standard …
C++ (RationalNumber Class) Create a class RationalNumber (fractions) with the fo
                    C++                                                                                                              (RationalNumber Class) Create a class Rational…
C++ (RationalNumber Class) Create a class RationalNumber (fractions) with the fo
C++    (RationalNumber Class) Create a class RationalNumber (fractions) with the following capabilities:    A) Create a constructor that prevents a 0 denominator in a fraction, re…
C++ (RationalNumber Class) Create a class RationalNumber (fractions) with the fo
C++    (RationalNumber Class) Create a class RationalNumber (fractions) with the following capabilities:    A) Create a constructor that prevents a 0 denominator in a fraction, re…
C++ (The Person, Student, Employee, Faculty, and Staff classes) Design a class n
C++ (The Person, Student, Employee, Faculty, and Staff classes) Design a class named Person and its two derived classes named Student and Employee. Make Faculty and Staff derived …
C++ (Tic-Tac-Toe) Write a program that allows two players to play tic-tac-toe ga
C++ (Tic-Tac-Toe) Write a program that allows two players to play tic-tac-toe game. Your program must contain the class ticTacToe to implement a ticTacToe object.Include a 3-by-3 …
C++ (Towers of Hanoi) In this chapter, you studied functions that can be easily
C++ (Towers of Hanoi) In this chapter, you studied functions that can be easily implemented both recursively and iteratively. In this exercise, we present a problem whose recursiv…
C++ (Urgent Help Needed please) 1) Vectors: ( User Input ) : Write a program tha
C++ (Urgent Help Needed please) 1) Vectors: (User Input) : Write a program that: (a) Asks the user to enter a value and place that value into a vector (Note: user can input any nu…
C++ (Xcode) Object Orientated Programming. To receive full credit, programmers m
C++ (Xcode) Object Orientated Programming. To receive full credit, programmers must apply coding conventions for code block indentation, comments describing methods/classes, white…
C++ (a) Compute the median of data file. The median is the number that has the s
C++ (a) Compute the median of data file. The median is the number that has the same number of data elements greater than the numbers as there are less than the number. For purpose…
C++ (class,constructors ,overloading operator) In this assignment you are requir
C++ (class,constructors ,overloading operator) In this assignment you are required to implement and test the class Complex for performing arithmetic with complex numbers You shall…
C++ (cpp) please read carefully Your club is in a process of creating a weekly l
C++ (cpp) please read carefully Your club is in a process of creating a weekly lottery. Once a week, five distinct random integers between 1 to 40 (inclusive) are drawn. If a play…
C++ (do not use stdio.h) link for this continuing question:: ( https://www.chegg
C++ (do not use stdio.h) link for this continuing question:: ( https://www.chegg.com/homework-help/questions-and-answers/c-use-stdioh-please-follow-exact-procedure-1-create-three-…
C++ (don\'t copy, ask own question or change) a. Write a code snippet which asks
C++ (don't copy, ask own question or change) a. Write a code snippet which asks the user to enter city names until "DONE" is entered and stores the cities entered in a string vect…
C++ (include comments) There are 3 exercises Exercise 1 (15 points) Write a func
C++ (include comments) There are 3 exercises Exercise 1 (15 points) Write a function, smallestIndex, that takes as parameters an int array and its size and returns the index of th…
C++ (including comments) Write a program to convert the time from 24-hour notati
C++ (including comments) Write a program to convert the time from 24-hour notation to 12-hour notation and vice versa. Your program must be menu driven, giving the user the choice…
C++ (n each of the operations, in comment form it states what each operation is
C++ (n each of the operations, in comment form it states what each operation is looking for and some of the implementations has already been started. Need help with finishing the …
C++ (please check your code if it works before submit it, thank you) Define an a
C++ (please check your code if it works before submit it, thank you) Define an abstract base class called BasicShape. The BasicShape class shouldhave the following members: Protec…
C++ (please use comment on each line of code to shows what does it do and what i
C++ (please use comment on each line of code to shows what does it do and what its' mean) Thank you! Project 2 is an individual assignment that focuses on object-oriented programm…
C++ * Please be sure that your code is structured into the following files: - Pe
C++ * Please be sure that your code is structured into the following files: - PersonType.h - PersonType.cpp - PersonTypeMain.cpp - makefile _______________________________________…
C++ * Please be sure that your code is structured into the following files: - Pe
C++ * Please be sure that your code is structured into the following files: - PersonType.h - PersonType.cpp - PersonTypeMain.cpp - makefile _______________________________________…
C++ ** please provide comment for each section as I am fairly new to coding and
C++ ** please provide comment for each section as I am fairly new to coding and need to understand how the program actually works. 1) Write code that displays a 7-line diamond pat…
C++ ****************************************************************************
C++ ****************************************************************************************************************************** Write a program to simulate a clock. Your progra…
C++ ***// on the problems, if I use the term \"C-type string\" it means an array
C++ ***//   on the problems, if I use the term "C-type string" it means an array of type char which will    //   have an end-of-string mark ('') as the last item in the array    /…
C++ ***Please include makefile*** Requirements: You should name your Prority Que
C++ ***Please include makefile*** Requirements: You should name your Prority Queue class as PQ. The queue must be able to hold unlimited number of integers. It has two key operati…
C++ *20.1 (Implement remove(T element)) The implementation of remove(T element)
C++ *20.1 (Implement remove(T element)) The implementation of remove(T element) is omitted in Listing 20.2, LinkedList.h. Implement it. For input use this sentence, which you may …