I'm really new, really really new, to C++, and all programming for that matter. I just picked it up as a personal goal, and I'm having trouble implementing my previous lessons from the tutorial into my current one.. Most currently with using a loop along with the function lesson code... Let me show you:
Code:
#include <iostream>
using namespace std;
int mult ( int x, int y );

int main()
{
    for ( x == 0; x < 10; x++ ) {
    int x;
    int y;
    
    cout<<"Input two numbers for multiplication: ";
    cin>> x >> y;
    cin.ignore();
    cout<<"They multiply out to "<< x * y <<"\n";
    cin.get();
    cout<< x <<endl;
}
cin.get();
}

int mult ( int x, int y )
{
    return x * y;
}
Heh, I know this is pretty jacked now.. But its after I've been tinkering with it for about 30 minutes and I've probably done way way more damage than good. any help is appreciated... I got a few other simple progs to work but this is kicking my buttox

Thanks
-Inao