In Dialogue 4,which of the following price rebargain skills have been used by the seller respectively in the discount negotiation?(单选或多选题,每空答案仅填字母即可,格式为AC)
A. 卖方还价技巧之均摊差额法
B. 卖方还价技巧之弹性还价
C. 卖方还价技巧之利用优势还价
用if语句表示如下分段函数:y= x**2*2x+3x<1y=平方根(x-1)x>=1下面程序段不正确的是()
A. if (x<1): y=x**2-2*x+3else: y=math.sqrt(x-1)
B. if (x<1): y=x**2-2*x+3y=math.sqrt(x-1)
C. y=x**2-2*x+3if (x>=1):y=math.sqrt(x-1)
D. if (x<1): y=x**2-2*x+3if (x>=1):y=math.sqrt(x-1)
下面的程序段求x和y两个数中的大数,()是不正确的。
A. maxNum=x if x>y else y
B. maxNum=math.max(x,y)
C. if(x>y):maxNum=xelse:maxNum=y
D. if(y>=x):maxNum=ymaxNum=x
用if语句表示如下分段函数f(x),下面程序不正确的是()。f(x)=2x+1x>=1f(x)=3x/(x-1)x<1
A. if(x>=1):f=2*x+1f=3*x/(x-1)
B. if(x>=1):f=2*x+1if(x<1):f=3*x/(x-1)
C. f=2*x+1if(x<1):f=3*x/(x-1)
D. if(x<1):f=3*x/(x-1)else:f=2*x+1