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
~891 People Reached
Favorite Tags
Member Avatar for solitaryy

So I have designed my program but am stuck on one function. [I]The following is an excerpt from my class:[/I] [CODE] public class SqrXY { public void SqrXY (double x, double y) { xaxis = x; yaxis = y; } public double addition () { //this is what I am …

Member Avatar for solitaryy
0
120
Member Avatar for solitaryy

Hi I have a file (.txt) I need my program to read that stores information like this: [CODE]Thomas 2000 Bill 3000 Jake 3500[/CODE] At which point I need to have the user input via cin, [I]name of the person[/I] ie: Jake and have them input another cin(double) which will multiply …

Member Avatar for chiwawa10
0
90
Member Avatar for Techwriter10

When Google developed the Nexus One, they might not have figured on one huge unintended consequence. They [URL="http://www.wired.com/epicenter/2010/01/googles-dont-be-evil-mantra-is-bullshit-adobe-is-lazy-apples-steve-jobs/#ixzz0eaEaTQsI"]pissed off Steve Jobs[/URL] big time. "We didn't get into the search business," he reportedly barked, at a Town Hall style meeting, following the iPad announcement last weekend. "They got in the phone …

Member Avatar for debos
0
421
Member Avatar for solitaryy

I have a vector filled with names such as John Doe Jane Doa etc. I need to write a function which deletes what is input via the user [CODE]void delete(vector<string>&name) { string FName, LName; cout<<"Enter first name and last name to be deleted"; cin>>FName>>LName; }[/CODE] ie input: John Doe and …

Member Avatar for solitaryy
0
260