Question:Write down a pseuducode of three numbers by sorting with desending to assending ?
Answer Read a,b,c
IF a<b THEN
SET temp=a,a=b,b=temp
END IF
IF a<c THEN
SET temp=a,a=c,c=temp
END IF
IF b<c THEN
SET temp=b,b=c,c=temp
END IF
PRINT a,b,c
+ Report
Write down a pseuducode of three numbers by sorting with desending to assending ?