Write an algorithm to print multiplication table for numbers up to 12
Answers
Answered by
0
Answer:
For(i=1;i<= 12;i++)
{
Print i*n
}
Explanation:
N is the input number
Similar questions