No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Is there a function used to calculate the length of an array. For instance, if someone enters John, the function outputs 4. Or is it necessary to write a function to do it, and how is it done. (This is not homework this time, just want to know for my …
Yea man, read the stickys. If you want help with homework, you have to show that you are actually trying. So try and write what you can, post it, and we will help.
Suppose that you are developing a class, Account, from which a customer can withdraw money. The Account class needs to keep track of the number of withdrawals that have occurred in each customer’s account. The partial specification for Account class is given below. You are required to complete the code …
[QUOTE=cplus2x;528512] [code]/* ***Candy Simulation*** ***MikhaeL Franko T. Mogol*** */ #include<iostream.h> int main() { cout<<"******Welcome to Mogol's Candy Shop******\n" <<"Enter your amount of money\n"; double user_amount; cin>>user_amount; cout"You have $"<<user_amount <<"\nWhat would you like to purchase?" << "To select an item, enter\n" << "1 for candy\n" << "2 for gums\n" << …
[QUOTE=carnage;525449][URL="http://www.bloodshed.net/devcpp.html"]Dev-C++[/URL] for me. you might want to try [URL="http://www.microsoft.com/express/vc/"]MS visualC++ 2008 express[/URL] haven't tried it yet though.[/QUOTE] I used Dev C++, and sometimes it doesn't compile functions. I would suggest Visual C++, whatever version you want. I use 2005.
My school for some reason taught me C++ last semester, and now i have to learn C#. I have to do a lab assignment....here it is and here is what I have. You are required to develop a program that calculates the average exam score for students taking a course. …
I need to change the AvgGrade2 function to work with what is shown, but i do not know what to edit for it to work correctly. [code] #include <iostream> #include <fstream> #include <string> #include <iomanip> using namespace std; struct ClassList { // Definition of a structure called ClassList // ClassList …
For a class I am taking I need to produce 1000 random numbers and store them in an array. I am totally lost and need some help. If someone can get me started on the program it would help me. Also, i need to write a function to find the …
The End.
Slate2006