• 2021-04-14
    下列程序实现的结果是(  )
    x=input(‘Input x please:');
    y=input(‘Input y please:');
    z=x;
    x=y;
    y=z;
    disp(x);
    disp(y);