586 Answered Questions for the topic C++

08/02/21

Please slove it In C++ .

Tasks:Create the following classes.1. Triangle:a. Properties: side1, side2 and side3. Properties should be private and should be of doubledatatype.b. Functions:i. Constructor function with... more

08/02/21

Slove the problem in the link,i am trying for 2 days but failed.

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab-QueueLinkedLIst.pdf?attachauth=ANoY7covEpsMj_JS2ydx_wiA9GNTH06VzS0RYm1PpDd174y4zxM7bgg6ivLee8f0UA4LIzNNjBcqcqxdUDbpF... more

08/02/21

Please slove the question in the link so that i can copy and paste.

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab-QueueLinkedLIst.pdf?attachauth=ANoY7cpuRN-ncID6lMZ38sSeRqMYNEvGz4V5y9EbWbaYHce6wHQfnwyyMfZku3aRIIR__clV3pFKwNynIiaec... more

07/29/21

I am feeling this code.Can u slove it so I can copy and paste it.

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab07.pdf?attachauth=ANoY7crxzVMVjv0xsQ99O60Rv2BccKwtT6Fu5hQY0srA819FgXzzToou7413SJoIqPQnZ-eWJSqcofLInAt6JTZqfPTnmTBnyz-... more

07/29/21

Sir,Kindly slove the link question so that i can copy paste.It will be great help of you.

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab11.pdf?attachauth=ANoY7crZMOINToW92u5TkBfqP75IakaUMX6cXjY2BKY2K_UmLLeyRlInOTDl_ixbjHeGOkKrxFI8CZd_zKdcAaTZZGPe5T96s4C... more

C++. Collection App with Two Classes and Dynamic C- Strings

C++. Collection App with Two Classes and Dynamic C- Strings Introduction In this program, you will add another class for managing the array of items. Start by looking at the lecture on classes part... more

C++. Collection App with Two Classes and Dynamic C- Strings

Collection App with Two Classes and Dynamic C- Strings Introduction In this program, you will add another class for managing the array of items. Start by looking at the lecture on classes part II... more

07/24/21

Sir,Kindly slove the link question.It will be great help.

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab06.pdf?attachauth=ANoY7coezo28kRJ5nopnC_ao8Bb_C4pTnYqbj_JkfVddxULhOkBr_QEtHu74gh3YLC_zUfsev9YfCu-iPYD__ALnh4qwMUTUqFv... more
C++

07/23/21

I did everything, it just the total and the subtotal!?

I did everything, it is just the total and the subtotal that get wrong.here are the codes#include <iostream>#include <string>#include <iomanip>using namespace std;void Go();int... more

07/22/21

I have no idea what I am doing wrong??

in this program, I spouse to let the user chose many items from the menu, but I don't know how to let stops from looping, also I don't know how I will collect the total?? could someone help me?here... more
C++

07/20/21

sLOVE THE QUESTION PLEASE IN THE LINK

https://8dfd4c4f-a-686c9e04-s-sites.googlegroups.com/a/northsouth.edu/cse225/Lab10.pdf?attachauth=ANoY7cqbecl_l3IAdlumdhdS4qTQfNU6hYUT0lyCUavyu_ASjG_fw4JuXT-YpZhTa7PNlxz03FyUHpfwKSpjnSDq1xbfTMV4foK... more

C++. Collection App with Two Classes and Dynamic C- Strings

Introduction In this program, you will add another class for managing the array of items. Start by looking at the lecture on classes part II for advice on how to design this class. Also, we will be... more

C++: Create a Dynamic Car Class

You will be using your previous version of the Car class and modifying it to have dynamic memory. previous code:carmain3.cpp: #include <iostream>#include <cstring>#include... more
C++

07/15/21

Data Structure- Linked List Question C++ (Computer Science)

Q1. Write the C++ code to implement the List class. You need to write only Insert( ), delete( ), display() and search( ) functions of the list class.Q2. In the List class created in Q1, create a... more

modify the code so i can submit it without plagiarism

Main.cpp #include "Unsortedtype.h" using namespace std; class StudentInfo { private: int id; std::string name; float cgpa; public: StudentInfo(); ... more

Car Class with Dynamic Memory

What To Code With your Car class from previous code: 1. Rewrite the C string members (make and model) to be dynamic C strings. Make all C strings the length of any passed in C string. NOTE: The... more

C++. Define a function RemoveUpper() that takes a string parameter and returns a string. The returned string is the parameter with all characters except the uppercase letters removed.

Define a function RemoveUpper() that takes a string parameter and returns a string. The returned string is the parameter with all characters except the uppercase letters removed.Ex:... more

C++. Write a function ComputeNum that takes two integer parameters and returns the first parameter minus 5 times the second parameter.

Write a function ComputeNum that takes two integer parameters and returns the first parameter minus 5 times the second parameter.Ex: ComputeNum(4, 9) returns -41.Code:#include <iostream>using... more

C++. Write a function CalculateVal that takes one integer parameter and returns the parameter plus 2.

Write a function CalculateVal that takes one integer parameter and returns the parameter plus 2.Ex: CalculateVal(3) returns 5.Code:#include <iostream>using namespace std;/* Your code goes... more

C++. Define a function RemoveUpper() that takes a string parameter and returns a string. The returned string is the parameter with all characters except the uppercase letters removed.

Define a function RemoveUpper() that takes a string parameter and returns a string. The returned string is the parameter with all characters except the uppercase letters removed.Ex:... more

C++. Define a function ParseStr() that takes a string parameter and returns "Good" if the character at index 3 in the string parameter is a space. Otherwise, the function returns "Bad".

C++. Define a function ParseStr() that takes a string parameter and returns "Good" if the character at index 3 in the string parameter is a space. Otherwise, the function returns "Bad".Ex:... more

C++. Write a function ComputeVal that takes two integer parameters and returns the product of the two parameters minus 8. Ex: ComputeVal(5, 9) returns 37.

C++. Write a function ComputeVal that takes two integer parameters and returns the product of the two parameters minus 8.Ex: ComputeVal(5, 9) returns 37.Code:#include <iostream>using... more

07/06/21

Slove the task 03 in c++

dynarr.h#ifndef DYNARR_H_INCLUDED#define DYNARR_H_INCLUDEDclass dynArr { private: int *data;int size;public:dynArr();dynArr(int);~dynArr();void setValue(int, int);int getValue(int); };#endif //... more

07/06/21

Please slove it in C++.Task 02.

dynarr.h#ifndef DYNARR_H_INCLUDED#define DYNARR_H_INCLUDEDclass dynArr { private: int *data;int size;public:dynArr();dynArr(int);~dynArr();void setValue(int, int);int getValue(int); };#endif //... more

07/06/21

Slove the problem in c++.slove task01.So that i can copy & paste

dynarr.h #ifndef DYNARR_H_INCLUDED #define DYNARR_H_INCLUDED class dynArr { private: int *data; int size; public: dynArr(); dynArr(int); ~dynArr(); void setValue(int, int); int... more

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.