Home
About Us
Contact Us
Home-icon
You tube
Contact us
Topics
6/recent/ticker-posts
Home
Tech channel with dsk blogger
Program for displaying tables from 1 to 10 using OOPS programming language.
Program for displaying tables from 1 to 10 using OOPS programming language.
Tech channel with dsk
October 29, 2020
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;
}
Click here for Online compiler
Post a Comment
0 Comments
Search This Blog
Followers
Social Plugin
Subscribe Us
Wikipedia
Search results
Popular Posts
Type casting and Wrapper classes in Java
December 31, 2020
Characteristics of Object oriented programming language
November 01, 2020
0 Comments