photo

Manish Kumar


Last seen: 대략 4년 전 2020년부터 활동

Followers: 0   Following: 0

통계학

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Pausing code for some time
You can use pause function. pause(n); It will pause your code execution for n seconds. pause(n);

대략 4년 전 | 0

답변 있음
"while" loop nested within "for" loop
n=10; ans=0; for i=1:n j=0; while j<i ans=i+j; end end

대략 4년 전 | 1