题目内容
下面是计算应纳税所得额的算法过程,其算法如下:
S1 输入工资x(x<=5000);
S2 如果x<=800,那么y=0;
如果800<x<=1300,那么 y=0.05(x-800);否则 y=25+0.1(x-1300)
S3 输出税款y,结束。 请写出该算法的程序语句及流程图。
解析:
程序语句如下:
input x
if x <=800 then
y=0
else
if x <=1300 then
y=0.05*(x-800)
else
y=25+0.1*(x-1300)
end if
end if
print y
end
练习册系列答案
相关题目