User profile: soldieringon

User info
User name:soldieringon
Email:soldieringon@yahoo.com
Name:Paul Wiklund
Location:Hemet, CA
Website:http://none
Bio:I am a former Soldier and a current student learning to program. I served 13 years in the U.S. Army and recently left. I am currently in my first semester of college.
Statistical data
Birthdate:Mar 11, 1979
Gender:Male
Occupation:Student
Skills:C++
History
Joined:
Number of posts:10
Latest posts:

Programming project hints on wrapping integer
My code has been reposted as the projects were submitted yesterday. Thank you KBW for your help with...

Programming project hints on wrapping integer
KBW: Thank you. so recursion is where my functions call themselves? ( I had to look that up lo...

While loop not incrementing
Try using [code]inSalary = (inSalary+500); // increment loan amount [/code] instead of [code]in...

Programming project hints on wrapping integer
That worked. Conditionals with a &&relational operator seem to have done the trick. I am removing t...

Programming project hints on wrapping integer
What about using relational opderators in a 'while' statement? i.e.: [code] while (result == 10 && ...