Q ----> Program to display multiplication table up to 10. jpr July 27, 2021 A+ A- Print Email Q ----> Program to display multiplication table up to 10.#include <iostream>using namespace std;int main () {int n ;cin >>n; for (int i=1; i<=10; i++){ cout << n <<"*"<<i<<"=" << n*i << endl;}return 0;} Tags: Coding C++ C++ Small Program 27Jul2021
Post a Comment