User profile: randallson88

User info
User name:randallson88
Email:mr_randallson@hotmail.com
Name:David Gooden
Location:Chicago, IL
History
Joined:
Number of posts:3
Latest posts:

Hints or help on writing a code to find Max sum of 3 integers
[code]if((a*b)>=(b*c)) HighestSum=a*b; else HighestSum=b*c; if(HighestSum>=(a*c) HighestSum=HighestS...

Reading a .txt file into an array
I declared the arrays after the value for rows and now it works thank you so much.

Reading a .txt file into an array
I am writing a program in Dev C++ to read values from a .txt file into a series of arrays. The prog...