how can I print some numbers in ascending order?

3 Ansichten (letzte 30 Tage)
Rahma Sabbah
Rahma Sabbah am 2 Jul. 2019
a= input('please enter a number:');
b= input('enter second number:');
c= input('enter number:');
I do not know how to print some numbers that user enter in ascending order.
  3 Kommentare
Star Strider
Star Strider am 2 Jul. 2019
Since this sounds like homework, what functions are you allowed to use?
Rahma Sabbah
Rahma Sabbah am 2 Jul. 2019
I have a limit to 3 numbers
I am allowed to use for, if and while functions

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Kaustav Bhattacharya
Kaustav Bhattacharya am 2 Jul. 2019
You have a, b, c. If you can use >,< then the following implemention can be used.
max = (a>b)*a + (a<b)*b
max = (max>c)*max + (max<c)*c
min = (a>b)*b + (a<b)*a
min = (min>c)*c + (min<c)*min
mid = (max~=a & min~=a)*a + (max~=b & min~=b)*b + (max~=c & min~=c)*c
disp([min,mid,max])

Luna
Luna am 2 Jul. 2019

Kategorien

Mehr zu Shifting and Sorting Matrices 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