
please wait
by DARK BUGABOO
Need help shifting array 2 spaces to the left.
|
My code is set up so that a user enters however big they need an array to be and can then choose from characters letters or special symbols. It then takes that ... |
Oct 29, 2015 at 7:35pm
[4 replies] Last: It said invalid conversion from char to constant char. Is it Because I... (by DARK BUGABOO)
|
reading through text file |
I need my code to read an example of "string:double" but reading through my code it'll give me the string but it also says it cannot be found. i can't figure ou... |
Oct 29, 2015 at 7:32pm
[3 replies] Last: I need my code to read an example of "string:double" You are using... (by pearlyman)
|
by kbza94
Need help with pointer and bidimensional arrays
|
Hi, im fairly new to c++ programming and programming in general. That being said, i recently got into pointers and arrays as arguments in functions and i ran in... |
Oct 29, 2015 at 6:41pm
[4 replies] Last: Wow, your help is really appreciated. But now i came across another p... (by kbza94)
|
by bardo99
AREA AND PERMITER OF RECTANGLE???
|
i need help, my teacher hasnt really explained how to do this, but i want extra credit! please help, i dont know how to start or even make variables for this, t... |
Oct 29, 2015 at 6:34pm
[1 reply] : You can't figure out what variables you'll need??? How about length, ... (by cnoeval)
|
by CodeOpen
Bool Camparision
|
Why d return true but e return false? int main() { bool d = .06 == .2*.3; bool e = .3 == .1 + .1 + .1; cout << d << endl << e; } |
Oct 29, 2015 at 6:07pm
[3 replies] Last: Not necessarily, perhaps on your system .2 and .3 have opposite but eq... (by jlb)
|
by Ko2S2shot
Help counting occurrences.
|
Hey, im supposed to make a program that makes an array list of 1000 random numbers between 1 - 100 then find a way to count how many times each number shows up ... |
Oct 29, 2015 at 6:06pm
[4 replies] Last: I mean all you need to accomplish this is 2 loops. #include <iostrea... (by pearlyman)
|
by PhillipK
Sort
|
Hello. I'm required to sort two parallel arrays, first one regnum which is of type string and the other array extraWeightOverload which is of type doublet. ... |
Oct 29, 2015 at 4:28pm
[3 replies] Last: I'm sorry. It's my first time using this platform. My million apologie... (by PhillipK)
|
by Balqees
functions
|
I'am student in the univercity my qustion is how can i initialize stds array to print the information of all student .. i have to buld this function on cas... |
Oct 29, 2015 at 4:19pm
[1 reply] : ما في فايدة ههههههههههههه انا سيف هههه... (by saifk)
|
by nut
Need help with if/else statement formatting
|
So basically, I am trying to write a program that calculates the price per unit and percent off per unit of software sold. The program is supposed to calculate ... |
Oct 29, 2015 at 3:54pm
[3 replies] Last: Well, it works... until you input 9 or less... :) (by pearlyman)
|
by Casperlie
Error
|
Hey guys, need some help with code. Have to print "error" if user inputs float/double number instead of int. example: if users inputs 5 its ok, but if... |
Oct 29, 2015 at 3:52pm
[1 reply] : What have you tried? Show us some code that illustrates the problem an... (by jlb)
|
by kamilhassaan
can someone give me some questions on loops?
|
i need to practice "while loop" and "for loop". can someone give me around 10-15 questions? please do not give a lot complex questions. |
Oct 29, 2015 at 3:47pm
[2 replies] Last: Make a mastermind game. Create 4 variables that represent 4 colors. ... (by pearlyman)
|
by zero hl
delay program
|
how to use delay in c++ ? |
Oct 29, 2015 at 3:34pm
[no replies]
|
by Hcode91
View string from a certain offset in a file
|
Hello everyone, I been practicing with the filestreams in c++ and I can successfully get the string within a binary file to show on screen. However, the issue I... |
Oct 29, 2015 at 3:31pm
[4 replies] Last: Thank you once again :) Marking as solved. (by Hcode91)
|
by iR3MiX
Need Help w/Return Value Function
|
Hi, I'm trying to write a program that basically rolls some dice "behind the scenes" and outputs to the user the desired die to roll, how many times to roll it,... |
Oct 29, 2015 at 2:49pm
[7 replies] Last: Wow thanks for all the help everyone, and for the comments! I get why ... (by iR3MiX)
|
by cpluswut
HELP WITH FUNCTIONS
|
I need to create two functions, the first one must sequence a number. Ex n=6, output 123456.Right now my program outputs 654321. Second I need to create a funct... |
Oct 29, 2015 at 1:02pm
[1 reply] : Hi, Can you explain why your code produces the numbers in reverse? W... (by TheIdeasMan)
|
by jhsyber
Adding Constructors using operators overloaded
|
SO i want to add the default constructor and the generic constructor or at least keep changing the values as i either add or subtract the values. it prints ... |
Oct 29, 2015 at 11:50am
[4 replies] Last: ¿why do you have both `cf' and `a, b, c'? > (+=) not sure how to use... (by ne555)
|
by areyouennay
Help with a password validator.
|
In writing my code for this function, the password always returns as failed-- so it's looping infinitely. If I attempt to follow the pwFailure variable in my he... |
Oct 29, 2015 at 11:44am
[9 replies] Last: #include <iostream> using namespace std; int main() { int hasUpper... (by closed account 48T7M4Gy)
|
by content
Theatre ticket codes
|
hello i m writing basic theatre ticket program. While writing now i can't solve one problem. When program ll print seats turning symbols to ascii. Because used ... |
Oct 29, 2015 at 11:17am
[1 reply] : Use a char arrays instead of an int arrays at lines 14 and 19. line 1... (by dhayden)
|
by marjstov
Need help stopping a while loop
|
So I am reading in a file with a while loop. at the end of the file it reads END. My while loop prints it and for the love of god I can not figure out how to co... |
Oct 29, 2015 at 10:59am
[4 replies] Last: @Ericool Don't loop on EOF! The flag isn't set until you try to read s... (by TwilightSpectre)
|
by kamilhassaan
can someone give me detailed explanation on the while loop?
|
Don't explain "For Loop" and "Do While" loop. Just need an explanation on the simple "While" loop and how to use counter |
Oct 29, 2015 at 10:56am
[11 replies] Last: sorry for the late reply, i did figure out how to solve it :D (by kamilhassaan)
|