Write a for loop to populate multiplicationtable with the multiples of basevalue from 0 to 5. ex: if basevalue is 2, then multiplicationtable is [0, 2, 4, 6, 8, 10]. (2 x 0 = 0, 2 x 1 = 2, 2 x 2 = 4, 2 x 3 = 6, 2 x 4 = 8, 2 x 5 = 10)
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a for loop to populate multiplicationtable with the multiples of basevalue from 0 to 5. ex: if basevalue is 2, then ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Mathematics » Write a for loop to populate multiplicationtable with the multiples of basevalue from 0 to 5. ex: if basevalue is 2, then multiplicationtable is [0, 2, 4, 6, 8, 10]. (2 x 0 = 0, 2 x 1 = 2, 2 x 2 = 4, 2 x 3 = 6, 2 x 4 = 8, 2 x 5 = 10)