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
~363 People Reached
Favorite Forums
Favorite Tags
c++ x 2

2 Posted Topics

Member Avatar for elthran2

The best way might be to use a while loop, eg: [code]char x; string input; do { cout<<"Please input the coin selection, or to terminate input a *: "; cin>>x; if (x!='*') input+=x; } while (x!='*');[/code]<< moderator edit: added [url=http://www.daniweb.com/techtalkforums/misc.php?do=bbcode#code]code tags[/url]: [inlinecode][co[u][/u]de][/co[u][/u]de][/inlinecode] >> now you have a string of inputs, …

Member Avatar for mooni
0
155
Member Avatar for djjkotze

Hi there people! I am trying to implement various sort methods in one program, just to practise implementing sort methods for one of my courses at varsity. However, my method works fine, the moment I use the pointer that it returned, it broke. Here is my program: [code]#include <iostream> #include …

Member Avatar for Dave Sinkula
0
208

The End.