Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Abdulazizsayed/efa43bd391926ad50df05a59adff021e to your computer and use it in GitHub Desktop.
Save Abdulazizsayed/efa43bd391926ad50df05a59adff021e to your computer and use it in GitHub Desktop.
Multiplication taple
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "enter the number that u want the Multiplication table of it : ";
cin>>n;
cout<<n<<" | "<<endl;
for(int i=1;i<=12;i++){
cout<<"x "<<i<<" | "<<i*n<<endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment