User profile: kromari

User info
User name:kromari
Name:Kromari
Location:Va
Bio:Beginner c++ student
Statistical data
Birthdate:Jul 19, 1989
Gender:Male
Occupation:Student
Skills:C++
History
Joined:
Number of posts:18
Latest posts:

Program that computes amount of months to repay a loan
The problem may be that the equations are not right

Program that computes amount of months to repay a loan
I may have not been clear in writing my question, but the purpose of my program is suppose to be to ...

How is the sum of all odd or even numbers found
How do you find the sum of all the numbers output from a loop? [code] #include <iostream> u...

Program that computes amount of months to repay a loan
My program is correctly outputting the correct amount of months to repay a given loan amount. Could ...

Write a program to output the sum and single digits of any integer
[code] while (num != 0) { num2 = num / 10; count++; //Needs appropriate LCV } ...