Feeds
質問
how to creat a nested for loops to print the following pattern.
Write a nested for loops to print the following pattern. A BA CBA DCBA EDCBA
8年以上 前 | 2 件の回答 | 0
2
回答回答済み
How can Write a function that combines two lists by alternatingly taking elements, e.g. [23,11,70], [1,2,3] → [23,1,11,2,70,3].
thanks for all of you
How can Write a function that combines two lists by alternatingly taking elements, e.g. [23,11,70], [1,2,3] → [23,1,11,2,70,3].
thanks for all of you
8年以上 前 | 0
質問
How can Write a function that combines two lists by alternatingly taking elements, e.g. [23,11,70], [1,2,3] → [23,1,11,2,70,3].
function C= concat(L1,L2) T=[L1(1),L2(1)]; for i=2:length(L1) T(end+1)=L1(i) T(e...
8年以上 前 | 3 件の回答 | 0
