by Opaul
Write a program that outputs the total of 5-digit numbers with a five in them, but not with an 8
|
|
[2 replies] Last: If zero is allowed as the leading digit of the five digit number (ie. ... (by JLBorges)
|
by krappy
insert element into nested vector
|
|
[6 replies] Last: i suggest to change this: exit(EXIT_SUCCESS); with this: return 1; ... (by chipp)
|
by pheliont
Arrays
|
|
[4 replies] Last: I would use the sentinel if I don't know how many items are in the lis... (by chicofeo)
|
by groghad
getline function
|
|
[1 reply] : Alright so i seem to have fixed it by just making the getline function... (by groghad)
|
by Blue Sky
can't use *this in a member function
|
|
[1 reply] : The error clearly states that it can't find a function fill() that tak... (by helios)
|
by mtaylor2018
While Loop to read out file information
|
|
[4 replies] Last: Hi, One shouldn't loop on eof , loop on the filestream instead. ... (by TheIdeasMan)
|
by rapalabrowns
Battleship program, should not hit same location twice
|
|
[1 reply] : I've overhauled my code a bit for function more properly, the above co... (by rapalabrowns)
|
random numbers: rand() vs. <random> |
|
[12 replies] Last: @JLBorges, with your code snippet as a starting point I rewrote my so... (by closed account E0p9LyTq)
|
Help on array |
|
[1 reply] : #include<string> #include<iostream> using namespace std; int main()... (by closed account 48T7M4Gy)
|
by isom03
Output total rainfall and average temperature during the period
|
|
[2 replies] Last: PS a, b and c are not good variable names. (by closed account 48T7M4Gy)
|
Code logic question |
|
[5 replies] Last: Thanks for the help guys! (by helloworld135)
|
by lordnikon428
Help With Accessors & Classes, Coming from Struct.
|
|
[1 reply] : In C++, the struct and class keywords mean the same thing, the onl... (by LB)
|
by RAVSHAN02
Need Help with void prototype (sorting arrays) increasing/decreasing
|
|
[2 replies] Last: Thanks, but could u maybe explain the code especially the first two li... (by RAVSHAN02)
|
by lhenriqu
Lottery Lab Help
|
|
[4 replies] Last: @lhenriqu, I am sure you are getting or will get more errors than the ... (by chicofeo)
|
by chanzilla
Needing clarification on why a while loop is running while value is true
|
|
[6 replies] Last: Thank you so much! (by chanzilla)
|
by DrJones
read from a txt file
|
|
[1 reply] : ~ is interpreted by the shell, so don't use in a C/C++ program. file.... (by kbw)
|
by kamilhassaan
I made a mistake in the following program
|
|
[4 replies] Last: and give me the answer The answer has been worked out - that's why... (by closed account 48T7M4Gy)
|
by qia360
HELP simple Hello World in codeblock won't run in Mac
|
|
[3 replies] Last: thanks for the reply.. I have all tried your suggestions..and write li... (by qia360)
|
by FuManchu
How do I find the number of characters in a word in a string?
|
|
[4 replies] Last: I got it working. Thanks! (by FuManchu)
|
by rorschach14
Printing char[][] in a function
|
|
[3 replies] Last: You could use a c++11 array of arrays (or vector of vectors) & query t... (by Norm Gunderson)
|