• 2021-04-14
    求分段函数的值,正确的程序是(;;;;; )。? x=input('x=:');
    y=(x+10)*(x>0)+(x-10)*(x<=0);
    disp(y)|x=input('x=:');
    y=x+10;
    if x<=0
    ;;; y=x-10;
    end
    disp(y)|x=input('x=:');
    if x>0
    ;;; y=x+10;
    else
    ;;; y=x-10;
    end
    disp(y)|x=input('x=:');
    if x>0
    ;;; y=x+10;
    elseif x<=0
    ;;; y=x-10;
    end
    disp(y)