
please wait
by YellowFlash
Funtion Recursion
|
Can someone give me a quick explaination of function recursion.I get the part about factorials, but i do not understand how i would implement this in a basic fo... |
Nov 5, 2012 at 5:53am
[3 replies] Last: http://erwnerve.tripod.com/prog/recursion/index.htm (by JLBorges)
|
by Meden
What kind of book should I use next?
|
I am teaching myself C++ as a hobby out of a 2001 book I had bought for a class around that time which I did not give enough attention to. I have recently pick... |
Nov 5, 2012 at 5:33am
[1 reply] : > Doing work out of a book has been very helpful to me, and it is the ... (by JLBorges)
|
Arrow Keys?!?! (1,2) |
I was wondering if there is a way to program with arrow in C++. I want to create a text based game where you push the arrow keys to move. How do I do this? T... |
Nov 5, 2012 at 4:43am
[21 replies] Last: @cstarter2000 In the start of your code, after initialization, you al... (by whitenite1)
|
Confused about test score curve |
I have been able to execute each part of this assignment except for the grading curve. We have to get 5 test scores from user input, configure the highest score... |
Nov 5, 2012 at 4:20am
[6 replies] Last: Specifically, for console applications, main() is defined as the entry... (by Moeljbcp)
|
by RKB344
what am i doing wrong
|
I can't figure out why this code isn't working that I have put together when ever I put in the answer it just stops write there and the while loop it's working ... |
Nov 5, 2012 at 4:09am
[1 reply] : Use code tags (the <> button on the right). // Word Jumble // 11/02/... (by Branflakes91093)
|
by willh313
Cant see whats wrong...
|
Hello all Im writing a program that is supposed to be a survey for two people to see if they are compatible roomates...however the problem is that I cant seem ... |
Nov 5, 2012 at 3:17am
[4 replies] Last: thank you guys that helped a lot...so far that seems to have worked. (by willh313)
|
by jlillie89
How to fill an array with strings
|
Hello, I have an assignment it is rather difficult for me. I have to read from a file one word at a time and fill and array of strings. I have no clue how to d... |
Nov 5, 2012 at 3:06am
[12 replies] Last: BadA*S Thanks for help people. Much appreciated as always. Jordan (by jlillie89)
|
by JBIRD304
Out putting info from functions using arrays
|
I have been working on this program to calculate average rain fall for a homework problem. I am having trouble because when I call my functions I am getting a b... |
Nov 5, 2012 at 3:02am
[2 replies] Last: Can anyone tell me what I am doing wrong? I feel like it could be in m... (by JBIRD304)
|
by helpwithc
Help with Triangles
|
Hi I am new to C++. There are two problems I am having an issue solving. The first one is : Design a date structure to store the triangle of numbers. Each... |
Nov 5, 2012 at 2:56am
[1 reply] : i was going to suggest something, but the instructions say to design a... (by pogrady)
|
by sirc89
Sorting and Searching Arrays
|
#include <iostream> // need for, cout, cin using namespace std; // Function prototypes void getIntegers (); void sortIntegers (int , int); int binaryInt... |
Nov 5, 2012 at 2:44am
[4 replies] Last: You must have thought it was useful, because you reference the third a... (by AbstractionAnon)
|
by AdoCg27
binary
|
I'm having a lot of trouble doing this hw I was given. it states: Input an integer containing only 0s and 1s (ex: a "binary" integer) and print its decimal ... |
Nov 5, 2012 at 2:41am
[2 replies] Last: i dont rly know how to set it up idk if im suppose to use float, switc... (by AdoCg27)
|
by dawtsf1187
Requesting constructive feedback for my text game: FutureQuest
|
So, like many I've seen on these forums, I've chosen C++ as my language of choice and embarked upon the journey of game creation. Now, after months of toil, I h... |
Nov 5, 2012 at 2:16am
[13 replies] Last: Thank you to those who have given feedback so far. Does anyone have an... (by dawtsf1187)
|
by nixer526
Regarding private help with messy code...
|
Hi there people. I'm very new to programming and have just finished my first simple scientific calculator program. The problem is that my program uses too many... |
Nov 5, 2012 at 2:04am
[12 replies] Last: Maybe you should try a new thread titled "Parsing mathematical express... (by TheIdeasMan)
|
by modic
How do you make your own header files? Help please!
|
I'm not talking about just a text file with code, I mean a header file containing functions C++ or any other header library has. :) Hope you can help. Tha... |
Nov 5, 2012 at 12:36am
[7 replies] Last: You're going to need brick and mortar. And love. Lots of love. Lov... (by pogrady)
|
Getter and Setter Help |
I'm working on a very simple, very beginner level combat system. Right now I'm trying to set up a Getter and a Setter functions in my Boss class. I want the... |
Nov 5, 2012 at 12:18am
[5 replies] Last: I'm not sure what your problem is, I do know I'll never try to run awa... (by Raezzor)
|
by Aalnius
Hexagon not printing out right
|
Hey guys so i finished my program and i decided to try to improve a few flaws it has, one of which is that when using an odd number my vertical lines match up b... |
Nov 4, 2012 at 11:57pm
[no replies]
|
by Afarian
Help with menu driven code
|
I have to write a menu driven program that allows the user to obtain specified measurements of geometric figures. A loop will be used to allow the user to cont... |
Nov 4, 2012 at 11:49pm
[6 replies] Last: *sigh* It sounds like you are having difficulty with simple code struc... (by Raezzor)
|
by Sena2012
Converting for loops into do while loops
|
I need help converting the for loops into do while loops. Not sure what I am doing wrong. The second code is what I am having trouble with. This is the for loo... |
Nov 4, 2012 at 11:07pm
[9 replies] Last: I don't disagree at all. (by ryancb06)
|
Code is not working |
OK: my code is not working. An explanation of what I want it to perform is at the bottom of my code. #include <iostream> #include <cstdlib> #include <ct... |
Nov 4, 2012 at 9:28pm
[5 replies] Last: Sorry for wasting your time. I just figure out why it was repeating. I... (by closed account LN7oGNh0)
|
by achieven
Avoiding circular dependencies
|
Hey all I'm trying to write a program like so: I have a cpp file I waould like to run and create objects of 2 classes. Each class has a field of the other ... |
Nov 4, 2012 at 9:01pm
[1 reply] : #1 Could you please go back and edit your post so it uses code tags H... (by andywestken)
|