49,761 Topics
| |
Hi, Ive been given an assignment in college to implement a dog class and to include functionality such as eating,sleeping,barking etc..im not really familiar with writing code to describe living things so just wondering could anyone give me a few suggestions as to how to go about doing this? I … | |
Here is what i need the PRG to do... Assignment #4 When you toss a coin, generally, you don't get too many heads or tails in a row, but if you toss enough times, eventually you will get a number of heads in a row or tails in a row. … | |
Need some help here. Why after I insert the node, it loop back to insert node again, and it not back to the menu. [CODE] #include "stdafx.h" #include <iostream> #include <string> #include <iomanip> #include <sstream> using namespace std; struct place { string cityName; place *left, *right; }; string myStr; void … | |
hie guys have a textbook that am reading there is a code that i need some help understanding better....can anyone explain to me line by line whats really going on.... No need to explain the main function though.......its a program that calculates permutation of whole numbers...Cheers! [CODE] #include<iostream> #include<conio.h> #include<string.h> … | |
Hey Im having trouble building a hangman game and I cant get it to build here is my code if anyone can help [CODE]#include<conio> #include<string> using namespace std; main(){ char word[30],getit[30],*found; int score,loop,len,num,lup,om,luptimes,times,fitimes,ondtimes,antimes; luptimes=0; fitimes=0; ondtimes=0; clrscr(); printf("\n ENTER THE WORD: "); gets(word); score=0; num=0; om=0; len=strlen(word); clrscr(); char gname[70]; … | |
Hey everyone, I have a quick (and hopefully simple question). I'm writing a simple program that will ask the user for two different inputs(IP address and message), save those as strings, then run a command in command prompt adding those strings on the end as arguments. I'm using it to … | |
Hey guys, I'm getting a few errors I can't seem to figure out solutions for: (SalesEmployee Line 21) error C2248: 'SalariedEmployee::salary' : cannot access private member declared in class 'SalariedEmployee' (SalesEmployee Line 17) error C2664: 'SalariedEmployee:: SalariedEmployee(const SalariedEmployee &)' : cannot convert parameter 1 from 'std::string' to 'const SalariedEmployee &' … | |
Problem: [url]http://contest.mff.cuni.cz/old/archive/asia1997/problemF.html[/url] I need the code..Help me c++ Masters | |
im making this hangman game for a class assignment i was just hoping for some suggestions its a work in progress [CODE]#include "stdafx.h" #include <iostream> #include <iomanip> #include <string> #include <array> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { string response; int w; const int WORDS(4); do//outer do loop … | |
I have to make a copy constructor for a queue class and decided to use enqueue to put the files in, but for some reason it gives a runtime error. so I really need some help in figuring out what is wrong. Thanks in advanced [CODE] #include <cstddef> #include <string> … | |
Hey guys, I have a soda machine program assignment that requires the user to insert an amount that has to equal to dollars, quarters, dimes, or nickels. Any other input will be displayed in the "Coin Return". The display should loop showing the current amount deposited until the user's deposit … | |
please help It says when creating the object of ArrayCharQueue that I can't because it is abstract and am not understanding why please help [CODE]//array based charqueue // must use abstract base class char queue // must be dynamically allocated #include "charqueue.h" #include <iostream> #include <cstdlib> class ArrayCharQueue : public … | |
I'm working in a large program. The problem is that I have to [COLOR="Green"]redraw the screen from time to time[/COLOR]. Go back to draw with SetPixel is too time consuming. With C++ I used putimage and getimage without any problem, but I can't find the equivalent instructions in windows programming … | |
Hello everybody, I am new to this forum. I got a stuck in my work ... I have ASCII file with numerical values, and I need to read them and save them in a matrix of 2 dimensions?.... If anyone can help me please ....!!??? Looking forward to any help … | |
How i can use contractor and destruction function in program? I do not understood about this two function. Please help me ...... Your Regard Sohel Rana Bangladesh | |
My question is that what is the effect if I delete a pointer in a linked list by mistake??? What problems will arise and how will I come to know that is a missing pointer that is causing the trouble? | |
Hello All, I can not understood what is function Overloading? Please help me........ Your Regard Sohel Rana Bangladesh | |
| hi! i tried to run the following program in BORLAND C++ version 5.02.. [code] #include<stdio.h> #include<graphics.h> #include<string.h> #include<math.h> #include<conio.h> int const monthcount=12,dataoffset=18; struct indata { float realarray[ 12]; float array[ 12]; }; char getlabel[3]; indata data; int monthplace[ 12]; float interval,chartbottom,radius; struct wcp { float x; float y; } coord[monthcount]; … |
How i can use contractor and destruction function in program? I do not understood about this two function. Please help me ...... Your Regard Sohel Rana Bangladesh | |
I have a little bit problem,and that is when i use inline function? Another one is advantage and disadvantage of inline function. Anyone help me? Your Regard Sohel Rana Bangladesh | |
Can you help me doing the same, but for c++? | |
For some reason im getting stuck in a loop after i enter in my "numberinput" i have a mimic case that does the same thing but with characters instead of numbers, and it seems to work perfectly all this is doing is checking to see how many times the user … | |
I have displayed an array in which I have added numbers in. Numbers 1 through 9, with 9 being a sentinel value. That I cannot figure out how to assign these numbers to the corresponding indicies. Please, please help [CODE] #include <iostream> #include <iomanip> #include <string> #include <fstream> using namespace … | |
hi guys, I have another noob question, I was wondering if anyone can help me with it. the home work assignment I have is "[B]In this assignment we are going to write a phone directory program. The user is asked to input a name and the program looks up the … | |
[code=c++] #include <iostream> using namespace std; int getNumChild() { int numChildren = 0; cout <<"How many children do you have? "; cin >> numChildren; return numChildren; } int calCredit(int numChildren, double income) { int totCredit = 0; totCredit = numChildren * 1000; if (income < 70,000) { if (totCredit > … | |
Hey guys i want help on implementing operator + (char) this is supposed to add a single element in an array | |
When trying to pass a template parameter to another template, I am getting an 'invalid template parameter' error. I even tried to force it with 'typename' with no success. Can anyone see what's wrong with this? [code] #include <itkImage.h> #include <itkImageFileWriter.h> #include <itkRescaleIntensityImageFilter.h> template <class T> void WriteImage(typename T::Pointer image, … | |
Hi, This is what the program does: -reads data (stock symbols, open price, closing price, high price, low price, previous price, and volume ) from a text file -do some calculation to produce percent gain/loss for each stock and produce closing assets -produce a list ordered by percent gain/loss and … | |
I want to know how to write a program to obtain sum of the first and last digit of a number? | |
I wanted to know that when I create a MFC Multiple Document (Application Type) can I use it to make an Application which I can use as a text editor. (Note : I have installed a VC2008 Feature Pack and want to create the Application Office Style) Actually my purpose … |
The End.