#Function to print a Table

print_table<-function(num){
    for(i in 1:11){
        print(paste(num,'i','=',num*i))
        
    }
}
print_table(5)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: