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
