第1题 题目: 下面的语句中,( )正确定义了一个计算浮点数x的平方( (x^2 = x × x) )的函数,并成功调用该函数。 A. 1 float square(float x) 2 return x * x; 3 4