49,765 Topics

Member Avatar for
Member Avatar for gnarlyskim

I'm working (well have been for the past few weeks) on a polynomial class to do different things between two polynomials: multiply, divide, get remainder, subtract, add. The coefficients are stored in a pointer to an array listed under private and the degree (also the amount of slots in the …

Member Avatar for gnarlyskim
0
86
Member Avatar for james8901

Hi folks. I have a text file with a thousands of rows of numbers in it. For example: 1 2 4 6 11 13 19 21 66 97 101 ........ 1 3 9 12 18 26 44 56 98 113...... ........... ...... What I want to do is find the …

Member Avatar for Ancient Dragon
0
158
Member Avatar for adams161

I have visual studio 6 and want to make a mfc dialogue application that is allays on top. By this i mean whatever programs you have open it will allays be on top. It's window will be fairly small so it doesn't get in the way. the reason for always …

Member Avatar for adams161
0
128
Member Avatar for Excizted

Hello :) My program is supposed to load some data into a buffer - but it fails. This is where i get a segmentation fault... [CODE]char* buf = new char[size + 2];[/CODE] Where my debugging tells me that size is correctly containing the value "1957" which is the actual size …

Member Avatar for Excizted
0
187
Member Avatar for pinsickle

Probably a dumb question but, How can you tell if a "split" has occurred all the way up a btree? Would it be that the parent pointer would be NULL? Like I said probably a dumb question. I've got my BTreeNode class working (including the add) but the BTree class …

Member Avatar for pinsickle
0
116
Member Avatar for randylahey

Hello, For this program I have to read a random phrase from a file which will contain an integer at the top describing how many phrases are in the file and then each phrase is blelow that number on a seperate line. I need to select a random phrase from …

Member Avatar for pinsickle
0
71
Member Avatar for God Coder123

I'm new to the code blocks ide. How exactly do i change the colours within the code window? Also how do i make code blocks portable as i use it on a number of different computers. any help would be much appreciated >_<

Member Avatar for God Coder123
0
384
Member Avatar for Nicko_FaTe_

i have written a series of programs in c++ that do various things with dates and the likes, i now have to write a piece pseudo-code that can be used for data checking, abit stuck on how to even start. BEGIN CALL validDate = true CALL validmonth = true IF …

Member Avatar for WaltP
0
80
Member Avatar for kevin0101

[CODE]#include <iostream> #include <iomanip> //for formatted output #include <string> //for strings using namespace std; //named constants const double CENTIMETERS_PER_INCH = 2.54; const int INCHES_PER_YARD = 36; const int INCHES_PER_FOOT = 12; //function prototypes double toCentimeters(int, int, int); void fromCentimeters(double, int&, int&, int&); char inputData(int, string&, double&, int&, int&, int&); void …

Member Avatar for Fbody
-1
168
Member Avatar for Wert1

Hello, i am a beginner and need your help. The little programm should run and close another aplication(this works without the loop) every x seconds but it doesnt work :( . Thank you for your help. [CODE]#include <stdlib.h> #include <time.h> #include<iostream> void start (int); using namespace std; int main () …

Member Avatar for mitrmkar
0
344
Member Avatar for thehivetyrant

Hi there, i have this rectangle and i want to be able to rotate this shape around another when i press a key. i have been able to make it rotate where it is. There are two problems i am having difficulties with: - I can get the shape to …

Member Avatar for thehivetyrant
0
1K
Member Avatar for timbomo

I cant figure out how to import a file which contains the price of an item. and once i import the price idk how to put it in my program. AND I DONT TO USE IT AN ARRAY. I AM IMPORTING EACH ITEM ONE AT A TIME. [CODE]void main () …

Member Avatar for timbomo
0
158
Member Avatar for fyp

i would like to get date and time of button event. Here is the code that is writing the input from textBox11 into text file when the button 5 is clicked. Can anyone help me advice how to write the data and time into this text file when the button …

Member Avatar for Ancient Dragon
-1
173
Member Avatar for JGClifton

Just wondering if this is possible, basically I have some stored values that I want inserted into the middle of a URL in my C++ program. I then want the program to open up the URL with inserted data into the default browser. If anyone could give me any info …

Member Avatar for Fbody
0
158
Member Avatar for fyp

how could I creat a file at desired folder? Below is my code and what I want to do is 1)I open the "newfile1.txt"and read the first line(e.g Cat) from this file 2) and then create the Cat.txt at "C:\user\user\Desktop\history" Currently, I could creat Cat.txt at the folder where my …

Member Avatar for fyp
0
104
Member Avatar for jonymanolo

I need run a c++ method from my python program but the c++ method need a few parameters what need for call that method in my python code with the paramethers

Member Avatar for vegaseat
0
302
Member Avatar for c++ student
Member Avatar for Obsidian_496

Hello. I have a small problem in my home assignment. A neverending loop occurs, if user enters everything but digits, when I expect him to enter only digits. How do I allow only int type variables to be entered by user? The value user enters is the index number of …

Member Avatar for Fbody
0
181
Member Avatar for maryam ali

hi I'm Maryam can you help me to draw this shape * * * * * * * * * * * * * * * ** three triangles with the same base.

Member Avatar for syd919
0
70
Member Avatar for salomit

I want to print to a word of length n in a string .Using by C ++ langues.I have not know funtions in string.h support that. i'm happy when you help me! thank you

Member Avatar for syd919
0
59
Member Avatar for kedarm

Hi! I'm trying to use the nanosleep and sleep functions in a program I am trying to write. I first tried this - [CODE] fprintf(stdout,"Hey guys.."); struct timespec t_req, t_rem; t_req.tv_sec = 1; t_req.tv_nsec = 500; if (nanosleep(&t_req, &t_rem) < 0) return 0; fprintf(stdout,"...What's up?");[/CODE] Since the function nanosleep did …

Member Avatar for mitrmkar
0
950
Member Avatar for tomtetlaw

I am trying to get into the course to get an advanced diploma in professional games development, and I need to present a program to demonstrate my programming skills. Can someone give me some suggestions of a program to make that demonstrates that I know C++?

Member Avatar for jwenting
0
106
Member Avatar for coder19

[CODE] void MatchWord(Match temp, int duplicatedoc, int originaldoc, string * words) { Idea is to send in a match and then call the binary search on the matching words and see if they are found. If they are found, give them a higher weight and if not found, give it …

Member Avatar for vmanes
0
130
Member Avatar for bigdawgg

I am attempting to write some code that will open a sequintal file into arrays and will then can use the data to calculate monthly payment. the text file is as follows 1 5 10 20 50 2.5 4.1 5.3 7.1 8.3 With the top row being yrs and bottom …

Member Avatar for jwenting
0
186
Member Avatar for Dire Chess

So my teacher has a quiz question and his practice question for it is for us to code the strcpy function for character arrays assuming acceptable ones are passed. I have written my version and just want to see if it you see any errors in it. Or even if …

Member Avatar for Dire Chess
0
106
Member Avatar for CleanSanchez

My assignment is to find the sum of an array, sum of the cubes of the array (i.e. each value raised to the power 3) and the variance of the array. At the moment I'm getting compilation errors so I can't do any trial and error. My problem conceptually is …

Member Avatar for CleanSanchez
0
828
Member Avatar for buddy1

I'm having some trouble translating the following C++ program to Pep/8 assembly language. Can anyone help me solve this. This is what I have come up with. [code=cplusplus] #include <iostream> using namespace std; int list[16]; int i, numItems; int temp; int main() { cin >> numItems; for (i = 0; …

Member Avatar for mjmakl
0
2K
Member Avatar for omgaga

ok, i have a bigger problem. when i run the program (something like this); "Which swimming instructor would you like to choose? Enter j for Jeff, Enter a for Anna j Please enter the first letter of the day of the week you would like to schedule. M for Monday, …

Member Avatar for invisal
0
492
Member Avatar for rtllz

I was wondering how to make a program to open a specified file just by entering its location. What command do would i use to open it instead of double clicking on the file. Thanks in advance.

Member Avatar for Ancient Dragon
0
1K
Member Avatar for omgaga

OK, i can't figure out what kind of mistake I've done. Can somebody help me please. [CODE]#include<iostream> #include<iomanip> using namespace std; void scedulejeff (char [][4]); void sceduleanna (char [][4]); void Print2DArray(char [][4]); int main() { char jeffarray [4][4]; char annaarray [4][4]; char instructor; cout << "What instructor would you like …

Member Avatar for omgaga
0
114

The End.