by oRiinzu
Code problem
|
Hi, I'm new to c++. I'm trying to build a program that calculate and do operations on some numbe... |
Feb 20, 2014 at 11:34am
[2 replies] Last: Hi @oRiinzu As @keskiverto said you could use the while loop or any o... (by Jecs9)
|
by dpk2778
help me out
|
i am a beginner. my code block was working properly but after doing something i didn't saw the manag... |
Feb 20, 2014 at 11:18am
[2 replies] Last: Hello @dpk2778 If you mean the software CodeBlocks and the problem yo... (by Jecs9)
|
by Alby94
Lambda functions
|
Error: candidates expects 2 arguments, 1 provided; The first argument is saved or not? Need someth... |
Feb 20, 2014 at 10:23am
[1 reply] : first argument needs to be passed though it will be unused in the lamb... (by codewalker)
|
by sanasuke15
Fixed Linked List
|
Hello there, I'm to trying to build a fixed linked list and I encountered a problem, My linked list ... |
Feb 20, 2014 at 9:56am
[4 replies] Last: while(temp2->next!=0) { temp2=temp2->next; } temp2->next=te... (by sanasuke15)
|
by hunkeelin
Question on java
|
/*DListNode1*/ /* DListNode1.java */ public class DListNode1 { public Object item; // pu... |
Feb 20, 2014 at 9:23am
[2 replies] Last: l.head.item, lets look at the classes of that construct: Dlist1.DListN... (by ValliusDax)
|
by makaveli23
loop wont work , college albegra help ASAP
|
when i put the end of file statement it keeps repeating the same input over and over as an infinite ... |
Feb 20, 2014 at 8:45am
[1 reply] : Hard to say since you've provided none of the relevant code. Please... (by cire)
|
by fapyfapy
function for dealing with duplicates in an array
|
-- |
Feb 20, 2014 at 8:09am
[3 replies] Last: And therefore you cannot read the reference documentation for std::uni... (by keskiverto)
|
by LDgaming
same random number, how do I make them different?
|
My random seed keeps giving me the same value for both random numbers. How can I change my code so t... |
Feb 20, 2014 at 7:50am
[2 replies] Last: Thank you for the help. It seems that my error was that I was using sr... (by LDgaming)
|
by makaveli23
read from data file , need help ASAP
|
i have this program but it will only read the first two values twice of my data file and the second... |
Feb 20, 2014 at 7:23am
[1 reply] : if ( X = alphabet ) That condition has an assignment (=). You pro... (by keskiverto)
|
by a02babar92
Net profit 10% at the end of the year.
|
Linda is starting a new cosmetic and clothing business and would like to make a net profit of approx... |
Feb 20, 2014 at 4:37am
[2 replies] Last: What are you specifically having trouble with? (by heyyouyesyouiloveyou)
|
by Falkner92
Doomsday algorithm
|
hey everyone, could you guys help me write out a particular code that involves the doomsday algorith... |
Feb 20, 2014 at 3:46am
[1 reply] : Some minor edits: #include <iostream> using namespace std; int main... (by Smac89)
|
by bwilfong3
Encrypting problem
|
In the third function of my program, I am to reverse each word of the sentence so IF BUILDERS BUILT... |
Feb 20, 2014 at 3:09am
[3 replies] Last: The reason you're getting a lot of junk is (partly) because you don't ... (by long double main)
|
by ess0616
Creating a table?
|
Hello, everyone! This is my first post, and I really thank anyone in advance that can help me. I'm... |
Feb 20, 2014 at 2:54am
[3 replies] Last: Thank you! You saved my butt! (by ess0616)
|
by kiino
Employee Class Problem #2
|
Hey guys, so I'm trying to input 3 different data for a class array. However I keep getting these er... |
Feb 20, 2014 at 2:41am
[10 replies] Last: I read both chapters that talk about classes in my book so I redid my ... (by kiino)
|
by jbj6686
Breaking out of a loop
|
So I'm learning about arrays and I'm having trouble breaking out of a loop that adds user input dire... |
Feb 20, 2014 at 12:28am
[2 replies] Last: oh wow I feel really dumb now, that was such an easy solution. Thank y... (by jbj6686)
|
by fapyfapy
Function for moving string in an array
|
-- |
Feb 19, 2014 at 10:57pm
[3 replies] Last: -- (by fapyfapy)
|
by ramptar
C++ String first letter to upercase
|
Hello How to make the first latter in an array of strings to uppercase?? string example = "... |
Feb 19, 2014 at 10:54pm
[1 reply] : Use std::toupper() from the cctype library. http://www.cplusplus.... (by Catfish666)
|
by avanhoes
trouble with for and stacks
|
Having a bit of trouble with my for loop putting the information in the stacks. One stack is for cha... |
Feb 19, 2014 at 10:49pm
[6 replies] Last: Sorry I'm at work and it just got a little busy. I still don't have ac... (by unsensible)
|
Please help with my c++ project? |
I'm supposed to be writing a program that computes the volume of water in a water tower given the he... |
Feb 19, 2014 at 10:29pm
[3 replies] Last: Indentation really helps see the problem: #include <iostream> #inc... (by Disch)
|
by Bubz21
Binary file Help Please!
|
Hey there, I'm working on a program but I cannot seem to figure out why the build is not building. T... |
Feb 19, 2014 at 10:23pm
[5 replies] Last: No worries... that's an easy one to miss. Good luck with the rest of ... (by ValliusDax)
|