by James1st
Not understanding the 'OR" operator
|
|
[5 replies] Last: Of course! Thanks so much for seeing me through this "blind" spot. I r... (by James1st)
|
by xenovia12
c++ same but different
|
|
[6 replies] Last: [quote=Lorence30] char array = {'*','*'}; if ( array != array ) // ... (by keskiverto)
|
by taco3rd
Sorting a text file
|
|
[8 replies] Last: I extract the data from file1 and file2 into a temporary vector of in... (by benbalach)
|
by cheejudo
Basic tip calculator (input requested)
|
|
[1 reply] : 1. How can I make this code reset/refresh so i can enter more than 1 ... (by MiiNiPaa)
|
by Chimychangas
C++ Constructors and 2D Arrays
|
|
[7 replies] Last: each of the array values points to another array which store the stri... (by keskiverto)
|
by calisabeth
Making Fibonacci/Sequence Numbers
|
|
[1 reply] : Use for(int i = 1; i < fibNum; ...) cout the 0 before the loop. Note... (by coder777)
|
by lucasf100
Help for a little program
|
|
[2 replies] Last: That was that ^^, thanks for the links, i ll try to code with that. (by lucasf100)
|
by Jxcorex29
Array Question.....
|
|
[2 replies] Last: Thank you, but I figured it out...I didnt have to comment out line 4 t... (by Jxcorex29)
|
by amikecallies
Comparing String Indexes within a loop.
|
|
[2 replies] Last: Thank you. I've tried another way but I keep getting a error and not t... (by amikecallies)
|
by niknik2
Do-while looping help!
|
|
[1 reply] : The return 0 is in the while block. You need to place the return 0 out... (by FirstKoishi)
|
by androidguy1
Pass maze vector to function for reading
|
|
[11 replies] Last: It depends on how you place your player. You could store the player's... (by GRex2595)
|
by calisabeth
Make the user keep quessing
|
|
[6 replies] Last: Here you go @niknik2: #include <iostream> #include <cstdlib> using na... (by calisabeth)
|
by koopey
prime number generator from jumping into c++
|
|
[6 replies] Last: @smac 89 thank you for such a detailed response. now everything regard... (by koopey)
|
by Bigstorm
Determine the proper nounce in the .txt file input.
|
|
[1 reply] : Since you ignore the first words in sentences (in the English language... (by GRex2595)
|
Checking if input is an integer |
|
[8 replies] Last: #include <iostream> using namespace std; int main() { int input; ... (by GRex2595)
|
by caku8645
Variable within while loop
|
|
[1 reply] : float period = 0.0; float freq = 0.0; I don't know the volatile k... (by GRex2595)
|
by cmdiaz91
I cant enter a decimal in a cin without the program jumping to the end.
|
|
[1 reply] : It worked just fine for me (I think). Your output looks a little off,... (by GRex2595)
|
by relgin
rocket performance table
|
|
[8 replies] Last: If you want a table you need to use loops like fun2code mentioned, all... (by chouhaizi)
|
Function Operators |
|
[12 replies] Last: it is possible do make them do other stuff, things you would not expe... (by Disch)
|
by gadin210
Encrypting input text file
|
|
[4 replies] Last: no, you would use 'letters' as a pointer or iterator to iterate trough... (by codekiddy)
|