From d1658a21fef2442632ff5e802034368274296240 Mon Sep 17 00:00:00 2001 From: Monalika Date: Wed, 26 May 2021 16:46:48 +0530 Subject: [PATCH] Create Print Table.cpp --- Print Table.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Print Table.cpp diff --git a/Print Table.cpp b/Print Table.cpp new file mode 100644 index 0000000..6fae572 --- /dev/null +++ b/Print Table.cpp @@ -0,0 +1,21 @@ +/* C++ program to Print Multiplication Table of a given number */ + +#include +using namespace std; + +int main() +{ + int i,n,table=1; + + cout<<"Enter any positive number :: "; + cin>>n; + + cout<<"\nMultiplication Table of a given number [ "<