how to sort in increasing order using loop?

7 Ansichten (letzte 30 Tage)
baiti
baiti am 16 Dez. 2017
Beantwortet: rohan hazarika am 18 Sep. 2020
for i=1:6
A(i)=input('')
end
for i=1:6
for j=1:5
if A(j)>=A(j+1)
B=A(j);
A(j)=A(j+1);
A(j+1)=B;
end
end
end
  6 Kommentare
Jan
Jan am 17 Dez. 2017
@baiti: It seems like you have a problem running this code. Then it would be useful, if you mention what the problem is. "it wont work on my matlab" does not allow to reconsider, why you are not satisfied.
Manish Kumar
Manish Kumar am 26 Jun. 2020
Do you want better algorithm than this?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

rohan hazarika
rohan hazarika am 18 Sep. 2020
for i=1:6
A(i)=input('')
end
for i=1:6
for j=1:5
if A(j)>=A(j+1)
B=A(j);
A(j)=A(j+1);
A(j+1)=B;
end
end
end

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by