Cho thuật toán: Procedure Test (n:integer); Begin If (n>0) and (n<10) then Write(n) If n>=10 then243/480Cho thuật toán: Procedure Test (n:integer); Begin If (n>0) and (n<10) then Write(n) If n>=10 then begin Write(n mod 10); Test (n div 10); End; End; Với n=151. Kết quả nào đúng trong số những kết quả dưới đây?115151150Giải thíchC là đáp án đúng