Paupau, you should look through the tutorial on this site; as CodeMonkey already pointed out. Direct contact via an IM is not necessary; if you need feedback you can just post here.
I couldn't help but notice that you haven't gotten any further. I'll give you a small example program that shows how to use for loops and how to use cout. I won't, however, give you the solution to your problem. You should be able to figure it out.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <iostream>
usingnamespace std;
int main()
{
cout << "This is the first line." << endl << "And this is the second." << endl;
cout << "Let's count from 1 to 10!" << endl;
for(int i = 1; i<=10; i++)
{
cout << i << endl;
}
return 0;
}
Which should display this: This is the first line.
And this is the second.
Let's count from 1 to 10!
1
2
3
4
5
6
7
8
9
10
That's how to use for loops. Now try to solve the problem.