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
~2K People Reached
Favorite Tags
c++ x 36
Member Avatar for annagraphicart

How much will I be charged if I ask somebody to code me a program that Sorts, displays, and assigns? It contains about 2-3 arrays, and a bubble sort. then it assigns points according to the index. (easy program) anybody know an estimate of how much to expect to pay?

Member Avatar for raananschwartz
0
72
Member Avatar for annagraphicart

I have output from my program. I need it to be sent directly to Notepad or any other word processor. How can I do that? it's really important--thanks.

Member Avatar for Ancient Dragon
0
84
Member Avatar for annagraphicart

Okay, So i'm close to finishing up my program. I just need a few more things. By the way, all of you are AMAZINGLY great. I appreciate all the help. Alright... My program outputs Names, their Bowling scores, and How many points they have received (the points still need to …

Member Avatar for Dave Sinkula
0
102
Member Avatar for annagraphicart

I'm almost finished with this program. All i need to do is fix up the points system. Right now I have it where it numbers everything, which i'm using as the points system. take a look [CODE=C++] #include <iostream> #include <string> #include <istream> #include <fstream> using namespace std; int main() …

0
67
Member Avatar for annagraphicart

Can I get my output in my program to be sent to another program like Wordpad or Microsoft word?

Member Avatar for annagraphicart
0
126
Member Avatar for annagraphicart

Take a look at the "points" section. It says that i haven't declared the string name for "scores"... but scores is an int name not a string. Whats going on? #include <iostream> #include <string> using namespace std; int main() { const int MAX=4; std::string names1[4] = {"Anna" , "Jenny", "George" …

Member Avatar for annagraphicart
0
87
Member Avatar for annagraphicart

[code] #include <iostream> #include <string> using namespace std; int main() { string names[4] = {"Anna" , "Jenny", "George" , "Michael"}; int score[4]; for(int i = 0; i < 3; i++) { cout << names[i] << ": "; cin >> score[i]; cin.ignore(); } //sort by score for ( int i = …

Member Avatar for Duki
0
173
Member Avatar for annagraphicart

Sorry about that. Please help here. Extremely important. It says I need to declare the "i" in scores[i] But im not sure what to do. [code=cplusplus] #include <iostream> #include <string> using namespace std; int main() { //Declaring variables string names[3] = {"John","Anne","Mary"}; int score[3]; int points[3]; //Ask for scores. cout …

Member Avatar for Ancient Dragon
0
165
Member Avatar for annagraphicart

Can ya'll take a look at this? [code=cplusplus] #include <iostream> #include <string> using namespace std; int main() { string names[3] = {"John","Anne","Mary"}; int score[i]; cout << "Enter Scores" << endl << endl; cout << "Anna Marie: "; cin >> score[i]; //sort by score for ( int i = 0; i …

Member Avatar for Ancient Dragon
0
77
Member Avatar for annagraphicart

Okay, I need my output to be numbered. I know the index code works but idk how to use that. However, i also need to know how to do the if/else statement, so that if the output is "0", then they dont get an index, they just recieve "0"

Member Avatar for Narue
0
235
Member Avatar for annagraphicart

Okay, so i've gotten some help, however i'm still missing some things. In the code below, I have a Bowler's name, and their score. [code=cplusplus]#include <iostream> #include <string> using namespace std; int main() { string names[3] = {"John","Anne","Mary"}; int score[3] = {5,1,2}; //i.e //John's score = 5 //Anne's score = …

Member Avatar for Ancient Dragon
0
97
Member Avatar for annagraphicart

I really need to do this program, so I need ALOT of help. I want the program to output a question asking "Enter John Smith's Bowling Score: ", and that repeated abotu 20 times with Different names. (DO I need to store the names? if so, how?) What the user …

Member Avatar for Sturm
0
146
Member Avatar for annagraphicart

Hey guys, I'm in a bowling league and I need to code a program to help sort/assign points to the scores. I do web design/graphic design so if anybody can help me at all I will be glad to help any of you with any web/graphic needs. Lets say theres …

Member Avatar for Ancient Dragon
0
87