• 2022-05-27
    用if语句表示分段函数[img=308x97]17e4388e5f4429b.png[/img],下列不正确的程序段是:
    A: f=x*x+3 if x >;=1:f= math.sqrt (x+1)
    B: if x >;=1 :f=math.sqrt(x+1)if x <;1:f=x*x+3
    C: if x >;=1 :f= math.sqrt (x+1)f=x*x+3
    D: if x <; 1 :f=x*x+3else: f=Sqr(x+1) math.sqrt(x+1)