Feeds
已回答
Use fprintf to create a multiplication table.
This should work better n = 1:13; m = n.*6; table = [n;m] fprintf('%d times 6 is %d \n',table)
Use fprintf to create a multiplication table.
This should work better n = 1:13; m = n.*6; table = [n;m] fprintf('%d times 6 is %d \n',table)
5 years 前 | 1
