Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Construct a program that will display the multiplication table of 10 in c++ plsss

0 votes
asked Feb 5, 2018 by Justin Apilado (440 points)

1 Answer

0 votes
answered Feb 7, 2018 by Laxaman Pal (440 points)

#include <iostream>

using namespace std;

int main()
{

int i;

cout<<"Multiplication Table for 10 : "<<endl;

for(i=1;i<=10;i++){

cout<<"10 X "<<i<<" = "<<(10*i);

cout<<endl;

}
    return 0;
}

Cheers!!!yes

commented Feb 7, 2018 by Justin Apilado (440 points)
THAANK YOOOOUU!!! LOVE YOUU!!
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...