• 2022-06-12
    下面哪些代码能正确计算Y的值?Y的计算规则如下:
    A: if x<=3 then y=10 else y=10+(x-3)*0.8
    B: y=10if x>3 then  y=10+(x-3)*0.8
    C: if x<=3 then y=10if x >3 then y=10+(x-3)*0.8
    D: if x>3 then  y=10+(x-3)*0.8y=10