Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~631 People Reached
Favorite Tags
Member Avatar for scuzzo

I need help in analyzing loop structures. I am a student and need to know this for a class. In my first example here: for (int i=1;i<=n;i++) for (int j=1;j<=n;j++) I need to figure out how to analyze that this loop runs n^2 times. (This was an example given in …

Member Avatar for laehc
0
116
Member Avatar for scuzzo

This is a problem that is killing me. It is a school assignment and I can't figure it out so any help will be great. I have eleven questions, and I have five of them answered. I have these tables with these fields: Table:sales_rep Columns:Last|First|Street|City|St|Zip_Code|Total_Commision|Commision_Rate Table:customer Columns:Last|First|Street|City|St|Zip_Code|Balance|Credit_Limit|slsrep_number Table:part Columns: Part_number|part_description|Units_on_hand|it|warehouse_number|unit_price …

Member Avatar for debasisdas
0
258
Member Avatar for scuzzo

I need to output the first five lines or the last five lines of a .txt file the user provides while using switches in a command prompt. I've got it other than printing the lines to the screen. [CODE] #include <iostream> #include <fstream> #include <string> using namespace std; const int …

Member Avatar for NathanOliver
0
90
Member Avatar for scuzzo

I have everything almost done, the only problem I have is that I can't seem to get the linked list to advance when the terms start out with different exponents and instead of just printing the results I will tie them into a third list. Can you see what I'm …

Member Avatar for NathanOliver
0
102
Member Avatar for scuzzo

I almost have my overloaded += operator working. I just need some help polishing it. My problem is that if I put one list as +4x^4 and the other list as +3x^3+2x^2 then the list stays stuck on the first term of the first list. Can anyone throw me a …

0
65