Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~23.9K People Reached
Favorite Forums
Favorite Tags
c++ x 13
Member Avatar for EngneerNitemare

Hey all, I am having a little bit of trouble wrapping this segment up. I need a for loop that will wrap a 3 digit number (i.e. 320) vertically so that it displays like below. 3 2 0 instead of... 320 Here is the code I have already: [CODE]#include<iostream> #include<fstream> …

Member Avatar for EngneerNitemare
0
2K
Member Avatar for EngneerNitemare

Hey all, I have this for loop and it keeps printing a '}' at the end of my alphabet and I can't figure out why. Please help me figure out how to get rid of it! :) Thanks! - EngneerNitemare [CODE]// PREPROCESSOR DIRECTIVES #include <iostream> using namespace std ; // …

Member Avatar for mrnutty
0
135
Member Avatar for EngneerNitemare

Can someone please explain the concept behind bubble sorting a vector step by step? I know this is a tedious task so whoever answers I will much appreciate it! :) Questions: 1.) What variables are being used? 2.) How and where is the function placed? 3.) Where and why are …

Member Avatar for Nick Evan
0
57
Member Avatar for EngneerNitemare

I built this entire program and it does what I want it to except I want to use a bubble sort algorithm instead of the [CODE]std::sort()[/CODE] function I have right now. So please help me out on this. I don't really understand how bubble sorts work even after reading up …

Member Avatar for mrnutty
0
2K
Member Avatar for EngneerNitemare

Hey guys I have a couple of questions. I am trying to build a program that will prompt for the user to enter the size of an array. I've searched the web and several C++ books for guidance on this but have not been able to find anything of significant …

Member Avatar for mrnutty
0
19K
Member Avatar for EngneerNitemare

Hey all! I am trying to write a program that allows for: 1.) The user to enter the SIZE of an array. 2.) Prints random element numbers. 3.) Saves the random element numbers printed in the array. 4.) Bubble sorts and then prints the randomly printed numbers. Here is what …

Member Avatar for mrnutty
0
153
Member Avatar for EngneerNitemare

Student Problem: "I am trying to get the code below to compile which is from my textbook [I]"C++ How To Program (6th Edition)"[/I] Fig. 4.9. However, I keep getting the "Fatal Error LNK1561: Entry Point Must Be Defined" every time I try to build the code." What I Know So …

Member Avatar for Grn Xtrm
0
102
Member Avatar for EngneerNitemare

I have the following code which I have been trying get to output ALL capital letters using the toupper function. My code will build successfully, however all the letters are still lower case when ever I type. PLEASE HELP ME UNDERSTAND WHAT I AM DOING WRONG! The following is the …

Member Avatar for Ancient Dragon
0
405