by Silver29
Question, why is none of the math processes in this code being executed?
|
|
Sep 7, 2021 at 1:28pm
[3 replies] Last: silver20, DON'T EDIT YOUR POST to remove your question. That is rude ... (by deleted account xyzzy)
|
by fsonnichsen
Placing Functions inside class vs outside
|
|
Sep 7, 2021 at 12:42am
[6 replies] Last: OK and thank you for all the deliberation. As expected there are "fine... (by fsonnichsen)
|
by Zhylian
looping function
|
|
Sep 6, 2021 at 5:37pm
[4 replies] Last: Ok, so you can have a struct which represents the data, but you won't ... (by TheIdeasMan)
|
by persades
Functions
|
|
Sep 6, 2021 at 10:01am
[10 replies] Last: For the others, consider: #include <algorithm> #include <iterator> ... (by seeplus)
|
by ppkaa
Access Violation Writing Array Reading .txt
|
|
Sep 6, 2021 at 6:52am
[3 replies] Last: Dear Jonnin and TheIdeasMan, Thank you for the advise. I will reproce... (by ppkaa)
|
by emgenerix
If/Else coupon problem
|
|
Sep 6, 2021 at 4:10am
[1 reply] : In function 'int main()': 78:2: error: expected '}' before 'else' 33:... (by TheIdeasMan)
|
by Amr Saleh
Arrays
|
|
Sep 5, 2021 at 7:32pm
[3 replies] Last: In your second loop, during the process you are trying to display the ... (by Geckoo)
|
by gigacapybara
Homework fill in blank question to figure out output
|
|
Sep 5, 2021 at 12:19pm
[3 replies] Last: 4) cin of an int is weird. its going to read the whole thing and cons... (by jonnin)
|
by Hollowman
Vector version of pointer pointer array
|
|
Sep 4, 2021 at 5:42pm
[3 replies] Last: I generally prefer to keep everything 1d as much as possible for a var... (by jonnin)
|
by LeoV3
How does program know array size? (1,2)
|
|
Sep 4, 2021 at 9:11am
[24 replies] Last: I really do like using std::array over using a plain array more than ... (by seeplus)
|
by gigacapybara
Loops to make 3 tables of Celsius, Fahrenheit and Kelvin
|
|
Sep 4, 2021 at 4:19am
[7 replies] Last: @againtry Nevermind I got it to work, thanks for the help! (by gigacapybara)
|
by gigacapybara
Convert 12 hours to 24 hours
|
|
Sep 4, 2021 at 2:29am
[8 replies] Last: #include <iostream> #include <string> #include <iomanip> /* 5:30:00... (by againtry)
|
by DonnaPin
binary search tree confusion
|
|
Sep 2, 2021 at 11:54am
[5 replies] Last: yea this looks like older code, C++ converted over from C. Maybe on p... (by jonnin)
|
by mick777
how can i prent the array after evry pass in bubble sort
|
|
Sep 2, 2021 at 9:12am
[8 replies] Last: Or even as C++20: #include <algorithm> #include <iostream> #include... (by seeplus)
|
by alexas
rotation of the cuboid chain (1,2)
|
|
Sep 1, 2021 at 8:18pm
[37 replies] Last: Just simple Thanks just does not sound seriously, I was totally lost i... (by alexas)
|
by Silver29
Why does my code on C++ skip the getline on line 30?
|
|
Sep 1, 2021 at 5:20pm
[3 replies] Last: Hello Silver29, If you are still interested and catch this. Some sugg... (by Handy Andy)
|
by derpus
How do I check what specific char has been outputted to a specific xy position in the console?
|
|
Sep 1, 2021 at 3:27pm
[9 replies] Last: The Windows console is based upon a resizeable 2-d buffer and a window... (by seeplus)
|
by gigacapybara
How to count uppercase and lowercase strings
|
|
Sep 1, 2021 at 11:56am
[5 replies] Last: For some versions of some compilers (gcc?? - VS was OK), you had to wr... (by seeplus)
|
by AkiraC
How to print out sum for every loop?
|
|
Sep 1, 2021 at 9:59am
[6 replies] Last: Hello AkiraC, I finally figured out the problem I was having. In the... (by Handy Andy)
|