
please wait
by bendel11
Placing Dropdown Menu Issues
|
Hi, I have the same issue, placing the dropdown inside a cell of a table. The content drop down is positioned and fully visible if near the edge of the browser ... |
Oct 18, 2014 at 4:14am
[no replies]
|
by ChibuChan
First Year C++ help :(
|
I have to make a program for a class assignment and it's a number guessing game and I believe I got the random number generator correct but I'm wondering how to... |
Oct 18, 2014 at 2:32am
[1 reply] : #include <iostream> int main(){ char ch = 'y'; while (ch == 'y')... (by mobotus)
|
by NaviJ
First year c++ help
|
Hey guys having some trouble with an assignment I have due. The criteria my prof gave is this : You are asked to write a program for the users to guess a s... |
Oct 18, 2014 at 2:09am
[2 replies] Last: Hey, Here is a sample of the code: #include <iostream> #include <s... (by parruda)
|
by armstrhu
Binary Search Tree Duplicates Question
|
Hello, I had a simple question on BST's, on dealing with duplicate entries. I see things about whether its good to put them on the left, right, or not allow t... |
Oct 18, 2014 at 1:54am
[2 replies] Last: It depends what problem you are trying to solve. Usually BST is used t... (by parruda)
|
by rx7fc1jz
Trouble with looping program for multiple user inputs.
|
Hello! I am having trouble figuring out how to loop the program so that the user may enter more Fibonacci values instead of ending the program after the first s... |
Oct 18, 2014 at 1:52am
[7 replies] Last: Yeah i noticed that, also the program makes much more sense now it's... (by rx7fc1jz)
|
by dark ninjuh
inheritance situation?
|
Ok. so i'm in a bit of an unusual situation trying to structure this program and I Just don't know how to do it logically Ok basically its getting to be able... |
Oct 18, 2014 at 1:37am
[1 reply] : A Game is not a stuff, so Game should not inherit from it. This is a ... (by Lowest0ne)
|
by snx
Assignment operator overloading
|
QueLinked.h #ifndef PQUEUE_H #define PQUEUE_H #include <stdlib.h> // Provides size_t qstruct Node; class PriorityQueue { public: ... |
Oct 18, 2014 at 1:31am
[no replies]
|
by maybays
Errors in programming code
|
I need to know why my error messages are saying: 'principalAmount' cannot be used as a function assignment of read-only variable 'debtincomePercentage' ... |
Oct 18, 2014 at 1:18am
[5 replies] Last: Thanks so much! That worked! I can't believe I forgot the multiplicati... (by maybays)
|
by CompSciLoser
Disregard
|
I don't know how to delete this post. |
Oct 18, 2014 at 1:03am
[7 replies] Last: Use the VS debugger and step through the code. Check what happens when... (by parruda)
|
by Beauzel
Array user input storing in reverse. Need opposite.
|
Hello everyone, One final issue i can't seem to figure out. My array values are input requested such as 80 82 84. However, at print they are recovered as 8... |
Oct 18, 2014 at 12:54am
[5 replies] Last: You're welcome Beauzel. Glad you're unstuck. (by parruda)
|
by gomez268
Operator overloading
|
Hi below is an example from the book on overloading with the use of return*this; but i'm getting an error message when i try to compile it to see how it works.... |
Oct 17, 2014 at 11:46pm
[2 replies] Last: That was exactly the issue, thanks. (by gomez268)
|
by Beauzel
output is backwords and funtion help.
|
Hello everyone, I have been working on my last homework assignment and its due tonight. I have a few issue i need to work out with it. Fist off the output i... |
Oct 17, 2014 at 11:35pm
[2 replies] Last: Thank you very much! I was able to make the needed adjustments to get ... (by Beauzel)
|
by JohnnyScene
Adding by increments in a C++ while loop
|
I've been stumped on this one part on my assignment for hours. I've searched to the far reaches of the internet, but with no avail. All I need help with is what... |
Oct 17, 2014 at 11:27pm
[3 replies] Last: Would this help: http://www.cplusplus.com/doc/tutorial/control/ (by keskiverto)
|
by qingcheng
displaying barcode problem
|
hey i have work through every function all ready and i think i almost done, but when i run my code the 10 displaying barcode for zipcode are the same i can not... |
Oct 17, 2014 at 11:24pm
[1 reply] : First off, please use code tags when posting code: http://www.cplusplu... (by Esslercuffi)
|
by dunnDolphin
counting letters in a string, excluding spaces
|
I'm trying write a bit of code that will count the number of letters in a name (first, middle, last) but not count the spaces. What I have here almost work, but... |
Oct 17, 2014 at 9:56pm
[3 replies] Last: Thanks you! (by dunnDolphin)
|
analyzing metadata in a binary file |
Does anyone know of the location of a tutorial that can show me how to read from a binary file and determine what (of three different types) of data are present... |
Oct 17, 2014 at 9:22pm
[no replies]
|
by banithel
Assistance with a "negative guess"??
|
So, I am working on a Random Number Guessing Game project, and i just realize I didn't need to capitalize all of that, but I am already past it. Moving on. ... |
Oct 17, 2014 at 9:09pm
[4 replies] Last: Also, your project states "A negative guess should end the loop to mea... (by TheKingOfTyrants)
|
by qingcheng
problem with display barcode in my zipcode
|
continuous working on my project i am stop again for writing the void function in my coding the void displaycode() is Your program must implement the functio... |
Oct 17, 2014 at 9:05pm
[1 reply] : Please edit your post to include code tags and I'll be able to help yo... (by Renthalkx97)
|
by Corey21Woods
Need help! Looping problem!
|
How can I loop this to make it work where when the user enters a negative value for cin statements, it checks and tells the user they have an invalid input and ... |
Oct 17, 2014 at 8:55pm
[6 replies] Last: Have you learned std::cin ? (by Renthalkx97)
|
by pbfj22
Booleans for Restaurant Reservation System
|
Hi guys I'm not very familiar with booleans and arrays, so when I have to use the two of them together... you get the idea. This program is a restaurant rese... |
Oct 17, 2014 at 8:53pm
[1 reply] : #include <iostream> #include <string> const int numTables = 5; //it'... (by Renthalkx97)
|