You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*Imagine que a multiplicação pode ser definida como somas sucessivas, ou seja, a*b=a+a+...+a, somados b vezes. Escreva a função function mult( a, b ) que calcula a multiplicação utilizando somas sucessivas.