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
~7K People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for bpushia

This is my GPA Calculator, for a homework assignment. Please share what you would have added or remove from the code. Arrays is a requirement in this code. [CODE=c++]# include <iostream> using namespace std; int main () { float b [100], c [100], a, a1, average_GPA, total_credits, Cummalative_GPA; cout <<"Enter …

Member Avatar for Narue
0
6K
Member Avatar for fevershark

how can i use a class and dynamically allocate memory for an array? my class is called Fraction. [CODE] int n; /* n holds the user input */ int *array; /* array which you want to allocate later */ cout << "Enter the number of array elements..."; cin >> n; …

Member Avatar for dwks
0
144
Member Avatar for fevershark

these are the instructions for the program. > Prepare the Fraction class as we discussed in the classroom. It should include three constructors -- one with no parameters and which creates the fraction 0/1, one with one parameter numer and which creates the fraction numer/1, and one with two parameters …

Member Avatar for iamthwee
0
367