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)
거의 6년 전 | 1
