
please wait
Help with function decomposition? |
I have to write a five paragraph essay, explaining how I broke my program down, what would be good ideas to list in my essay?? |
Mar 8, 2013 at 7:20am
[3 replies] Last: In that case: - initial requirements - determining which functions to... (by Stewbond)
|
by ausairman
Vector literal function pointers
|
Quite simple really; I want to define a literal vector of function pointers. Here's what I've got: void fun1 () {} void fun2 () {} void fun3 () {} typedef v... |
Mar 8, 2013 at 7:03am
[11 replies] Last: Oh no I didn't mean that, just that I'm yet to use an open source VS p... (by ausairman)
|
by orourkeh
Dungeon hallway building tile map
|
I'm working on a basic dungeon generator right now. I have gotten it to build rooms and walls my problem lies with the tunnels connecting them. This is an exa... |
Mar 8, 2013 at 6:59am
[1 reply] : I think it boils down to the data structure you have. I would have a ... (by TheIdeasMan)
|
by ModernZen
Help using cin for a vector of ints
|
I am trying to read in an unknown number of ints into a vector using cin. This is my code: cout << "Input heap sizes: " << endl; while( cin >> input ) ... |
Mar 8, 2013 at 6:42am
[2 replies] Last: while( cin >> input ) >> is an operator that returns the cin obje... (by Lowest0ne)
|
by cotro
Design question
|
I have a program like this: from the main function I create an instance from a certain kind, called TextManager. It calls a method, this one calls another one t... |
Mar 8, 2013 at 6:06am
[no replies]
|
by ADTR2012
Battleship Program
|
I am having trouble with the beginning of a battleship program. Here is the header file I must use for the program. All of the ships are just 1 space big. I am ... |
Mar 8, 2013 at 5:57am
[5 replies] Last: statement after if will execute only if logical statement evaluates ... (by MiiNiPaa)
|
by sqlsoldier
How to "cout" this?
|
Hi guys , I am making an application just for fun 0_0 , and I have a little problem with it. The idea is to be able to run a "system" commands before the user i... |
Mar 8, 2013 at 5:56am
[3 replies] Last: Please post all of your code using [co de] tags and the errors. (by Zhuge)
|
by dinh9x
I need a help
|
I want to create a flowchart and solve this exercise, plz help Sales Bar Chart Write a program that asks the user to enter today s sales for ve stores. ... |
Mar 8, 2013 at 5:22am
[2 replies] Last: Actually, I do not understand this exercise, so I need an example for ... (by dinh9x)
|
by ktherinejo
Any ideas?
|
/*Cannot get code to function properly*/ #include <stdio.h> #include <math.h> #include <string.h> void initialize_seat(char seat , char req_seat ); ... |
Mar 8, 2013 at 5:06am
[1 reply] : Use [co de] tags. What is it supposed to do? What is it actually do... (by Zhuge)
|
by shorxy
Please Help Me with This Program. It is Urgent
|
Hello good people. Please help me with this C++ program. It is an assignment and I need to submit it as soon as possible. 1. A university has 200 student ... |
Mar 8, 2013 at 3:58am
[7 replies] Last: cin >> count; is having the user input the value for count I thin... (by ADTR2012)
|
Question about functions? |
For all programs with different functions do we always have to have the callback in the main function? I've heard some people say this but what would you guys s... |
Mar 8, 2013 at 3:57am
[1 reply] : Nope. You can call a function from the main() function, from another f... (by Tresky)
|
Iterations |
So my assignment is to find any phone number where the 4th # is even and the 5th is odd and when adding the last 6 digits the sum has to be 27. I think i've ... |
Mar 8, 2013 at 3:55am
[2 replies] Last: I don't understand. (by James Turnham)
|
by clarkd
Help Please
|
I need a little help with this PRG. First time it ask for it to move on to the next Generation. But doesn't ask second time. I did wrote using all Functions. So... |
Mar 8, 2013 at 3:29am
[no replies]
|
by Icshorts
HELP!: Basic user Interface Program with methods
|
I keep getting an error message of: 1>------ Build started: Project: CIS247_WK1_Lab_Shorts, Configuration: Debug Win32 ------ 1>LINK : error LNK2001: unresolv... |
Mar 8, 2013 at 3:08am
[5 replies] Last: // Program Header // Program Name: Basic User Interface // Programmer... (by Icshorts)
|
by njabbour
need help asap plz
|
Write a void function named get_names that inputs names from the user and stores the names in a vector of strings. The vector of strings is passed as a referenc... |
Mar 8, 2013 at 2:44am
[2 replies] Last: this is what i have so far what should i do now plz help (by njabbour)
|
by njabbour
I need help asap plz
|
Write a void function named sort2 that takes two string parameters and sorts them, alphabetically. The function swaps the values of the string parameters if the... |
Mar 8, 2013 at 2:32am
[3 replies] Last: Your function has a return type of void, so you cannot return anything... (by cire)
|
by H3avenlySoul
Help please
|
I need this program to work so that I can enter decimals instead of whole numbers. I don't know what I'm doing wrong. Can someone please help? #include <ios... |
Mar 8, 2013 at 2:31am
[3 replies] Last: Wow. Now I feel dumb. Thank you! (by H3avenlySoul)
|
by CinciKid17
Palindrome
|
I have no Idea how to do this and need help! First I must create this: 1. Read a text file and store the words into an array. You can assume that the array co... |
Mar 8, 2013 at 2:27am
[8 replies] Last: Yes but I want help with that problem not people telling me that im n... (by cire)
|
by Hashimatsu
Multi array with different data types
|
Is there a way of doing something simular to this? code: #include <iostream> #include <stdlib.h> #include <time.h> using namespace std; int main() { // sr... |
Mar 8, 2013 at 1:41am
[8 replies] Last: You could pass an index to the create function and operate on the acco... (by MrHutch)
|
by WillDesigned
Repeating
|
I'm stuck on a little issue that is most likely right in my face, yet I am oblivious. I'm working on a "Numerical to Letter Grade Converter" for practicing pu... |
Mar 8, 2013 at 1:27am
[3 replies] Last: Lots of ways to fix it, you could get user input and then check if it'... (by sysopfb)
|