49,757 Topics

Member Avatar for
Member Avatar for ace8957

Hi all, So I'm working on this program to use a circular doubly linked list to implement a queue class. It went fairly well, but I'm stuck on the copy constructor, which causes runtime errors whenever I try to test it. Nonetheless, I really don't see what I am doing …

Member Avatar for caut_baia
0
2K
Member Avatar for Behumat

Hi everyone! I'm both new here, and new to programming. I'm still learning how it all fits together, and have been putting together a simple assignment, but I've gotten a little stuck, and so far the book hasn't been a help. I know it must be something simple, but for …

Member Avatar for Kremlan
0
154
Member Avatar for vnorbi

Hello everyone! I'm making a tetris program, and now I'm stucked a bit. I have to use the simple getch() function, but in a special way. I need to use it for exact time, and when the time is up, I need to break the function, even if I haven't …

Member Avatar for WaltP
0
226
Member Avatar for The_Prince

I am a bit confused how to read this data and extract the information I want and eventually store into an array/vector etc ( which i will know how to do. I'll present what the text file says below. (Note that somehow everything is on one line on the text …

Member Avatar for WaltP
0
220
Member Avatar for gus7984

Hello, I'm getting an error when I try to compile the code and I do not know how to solve the problem. Please help! The assignment asks me to create a BOOLEAN function that can check if the graph is connected or not. So I decided to use DFS approach …

Member Avatar for chiwawa10
0
122
Member Avatar for peter_budo

1. Keep It Organized - Do not hijack old threads by posting a new question as a reply to an old one 2. Keep It Organized - Do provide evidence of having done some work yourself if posting questions from schoolwork assignments 3. [URL="http://www.daniweb.com/forums/announcement8-2.html"]We only give homework help to those …

0
106
Member Avatar for oggiemc

Hi, Im getin the following error when i try the code below..Anyone tell me whats wrong?? (name is defined in animal class).. 52 C:\Dev-Cpp\oopAssign1.cpp no match for 'operator>>' in 'std::cin >> name' [code=c++] void Animal::arrayDisplay(){ string name[3]; cout <<"Input 3 names:" << endl; for(int i=0; i<3; ++i){ cin >> name; …

Member Avatar for oggiemc
0
114
Member Avatar for shasha123

Build a program that determines monthly payments for a loan. please add problem statement and pseudo code? Use these parameters: (1)Loan amount as a float (2)Number of months for the loan as an integer (3)Monthly interest rate expressed as a decimal as a float. Please do not pass the annual …

Member Avatar for Fbody
0
81
Member Avatar for crossbow25

[CODE] #ifndef VECTORBINARYTREE_H #define VECTORBINARYTREE_H template<typename Object> class ArrayVector{ private: int capacity; int sz; Object* a; protected: void overflow() { capacity*=2; Object* b=new Object[capacity]; for(int i=0;i<sz;i++) b[i]=a[i]; delete []a; a=b; } public: ArrayVector(int initCap=16){ capacity = initCap; sz=0; a = new Object[capacity]; } int size() const {return sz;} bool isEmpty() …

0
85
Member Avatar for aaronmk2

My profesor added this line of code to a bubble sort saying that it made it more efficient by tracking the last swap. I don't understand how this would work [CODE] void bubble_sort(int a[], int n){ while (0<n-1) { int last =0; for (int i=0; i<n-1; i++) { if (a[i]>a[i+1]) …

Member Avatar for Fbody
0
3K
Member Avatar for FumarMata

Hello I want to pass a bidimensional vector to the constructor of all instances of [ICODE]MyClass[/ICODE]. All instances must use and share and modify the same vector. And I want to keep a reference to that [ICODE]main_vector[/ICODE] to use it later in the program I am passing it by reference …

Member Avatar for Fbody
0
199
Member Avatar for shakssage

Hello. I've got a problem that I haven't been able to solve after a long time searching. It's a simple problem. I have two forms. 1) Form1 2) Form2 I need to get from Form1 to Form2 and vice versa. I can get from Form1 to Form2 easily, but I …

Member Avatar for shakssage
0
388
Member Avatar for tikoti

Hi everybody! I am trying to use fork() and wait to perform a simple task with c++ but I have noticed that the performance is quite different from what I expected. [CODE] #include <unistd.h> #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int number = atoi(argv[1]); int i; …

Member Avatar for tikoti
0
3K
Member Avatar for avataralien

I wanted to do a simple date validation to disallowed string from entering when prompt. Pls guide me. Tks. Eg, "Enter the publish date in DD/MM/YYYY : ghghjb "Sorry, pls enter in DD/MM/YYYY" "Enter the publish date in DD/MM/YYYY : [CODE] # include<iostream> # include<string> using namespace std; class date …

Member Avatar for Taywin
0
105
Member Avatar for .waterboy

This is the problem: [url]http://www.ntnu.edu.tw/acm/ProblemSetArchive/B_VV_Asian/1997/ProblemF.html[/url] I just need the code badly.. Pls. Help Me..

Member Avatar for iamthwee
-2
78
Member Avatar for Nathaniel10

An exercise that Stroustrup wants the reader to do is understand the output of the following program. [code] #include "../../std_lib_facilities.h" struct X { int val; void out(const string& s, int nv) { cerr << this << "->" << s << ":" << val << "(" << nv << ")\n"; } …

Member Avatar for Nathaniel10
0
85
Member Avatar for wazzer225

Hello I'm trying to iterate backwards through a vector. with a while loop it works fine. prints out: 12 8 4 1 However the for loop prints 196735 12 8 4 Could you please tell me why this is. Probably something wrong with my logic i don't know I'm using …

Member Avatar for mitrmkar
0
106
Member Avatar for txwooley

My rand() isn't very random. As a matter of fact, it's not random at all! I am running Ubuntu 10.04 on both home comp and laptop. When I execute the code: [CODE]#include <iostream> #include <cstdlib> using namespace std; int main() { int x; x = rand(); cout << x; return …

Member Avatar for Fbody
0
95
Member Avatar for Tiny_trixer

Again I come crawling for help... I made a program that makes coordiant points and lines with these coordinates. A new class is going to inherit from the class with the lines, and calculate the distance between a line segment and a point. I found the correct mathematical formula. With …

Member Avatar for Tiny_trixer
0
131
Member Avatar for zhe05303

Using Object Oriented Programming, create an encryption/decryption program. Your program must be able to a. Ask the original text file name from user. b. Ask the destination text file name from user. c. Ask for option encrypt or decrypt. d. read from a source text file e. write to a …

Member Avatar for jonsca
-1
98
Member Avatar for bawbawbiscuit

Hi, I created a program that makes a multiplication table, I dont know where the .txt file is located after executing the program Im using turbo C++ :-/ [CODE]#include<iostream.h> #include<stdio.h> void main(){ int multiplicand; int multiplier; int toprow; int column; int repeater; FILE* Starter=fopen("[COLOR="Red"]multiplication.txt[/COLOR]","w"); cout<<"Insert the number of repetitions: "; …

Member Avatar for bawbawbiscuit
0
102
Member Avatar for dorien

Hello everybody, I am looking for a good C++ midi API. I have written a program in C++ that needs to be able to export MIDI. So far I had written my own export function, but I feel that the complexities of low level midi coding will become to great …

Member Avatar for dorien
0
393
Member Avatar for smoothe19

I am attempting to edit this Queue class to only use myBack pointer, i began having errors and now I am lost.... LQueue.cpp is as follows [CODE]/*--- LQueue.cpp ---------------------------------------------------------- This file implements LQueue member functions. -------------------------------------------------------------------------*/ #include <new> using namespace std; #include "LQueue.h" //--- Definition of Queue constructor Queue::Queue() : …

Member Avatar for akgh2010
0
178
Member Avatar for prestonprice57

I am working on a project for school and I can't get my readFile function to work. There is something wrong for the arrays that I am putting in. Here is the text file I am trying to read from: 4 Assign1 200 10 Assign2 100 80 Project 100 45 …

Member Avatar for WaltP
0
94
Member Avatar for jalenamichelle

im trying to convert julian date to calendar date and vice versa im not getting any errors, but the output im getting is ridiculous. any help is appreciated [code] #include "stdafx.h" /* int _tmain(int argc, _TCHAR* argv[]) { return 0; } */ int isLeapYear(int year){ return ((!(year % 4) && …

Member Avatar for WaltP
0
116
Member Avatar for oggiemc

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 …

Member Avatar for oggiemc
0
118
Member Avatar for newCoder1545

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. …

Member Avatar for WaltP
0
140
Member Avatar for milkypolar

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 …

Member Avatar for milkypolar
0
99
Member Avatar for slychronic

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> …

Member Avatar for jonsca
0
119
Member Avatar for nehru1947

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]; …

Member Avatar for WaltP
0
113

The End.