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
~144 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for Isimanica

This code has errors [CODE]#include <iostream> void main() { int var [10]; for (I=0; I<5; I++) cout << var(i); }[/CODE] Now what I have come up with is this to correct the errors that I see. [CODE]#include <iostream> using namespace std; void main() { int var [10]; for (i=0; i<5; …

Member Avatar for stokes1900
0
90
Member Avatar for Isimanica

Simply put I have an array of Data that is a total of 40 numbers that are between 1 and 9. I know how to make a function display and calculate just the frequency of the array. I know how to create a histogram based upon data from the array …

0
54