Make and run a program that will let the user to input two numbers. Display a multiplication table using entered numbers as its size. Set maximum size to 20.
1
Expert's answer
2012-10-05T08:13:53-0400
#include <iostream> using namespace std;
int main (){ int n,m; cout<<"Enter two number\n"; cin>>n>>m; if (n > 20 || m > 20) cout<< "Input uncorrect!\n"; else for (int i = 0 ; i < n ; i++){
Comments
Leave a comment