Topics

6/recent/ticker-posts

Program for displaying tables from 1 to 10 using OOPS programming language.

                               Tables program:

#include<iostream>
using namespace std;
int main() 
{
    int i,j;
    for(i=1;i<=10;i++)
    {
        for(j=1;j<=10;j++)
            {

                cout<<i<<" * "<<j<<i*j<<endl;
            }

    }
return 0;

}

Post a Comment

0 Comments