Creative Commons License Foxbond's Repo

/** (c) 2013 Michał (Foxbond) Chraniuk */
#include <iostream>

using namespace std;


int main(int argc, char *argv[])
{
    int w = 0;
    int x = 0;
    
    for (int i=0;i<=10;i++) {
        
        for (int q=0;q<=10;q++) {
            
            cout <<(i*q) << " ";
            
            
            
            w++;
            
        }
        x++;
        cout << "\n";
        
        
        
    }
    
    
    
    system("PAUSE");
    return 1;
}

> Back