4、函数h的定义以及题干要求,可以看出函数fgh应该表示的是乘号两边的某一项。(*f)和(*g)用来表示sin或cos,参数x和y的加减法运算作为sin或cos函数的参数,故应填写(*f)(x+y)/(*g)(y-x)。3.下面程序的作用是将以下给出的字符按其格式读入数组ss中,然后输出行、列号之和为3的数组元素,请在____处填入正确内容。 A a f c B d e b c g f D main() { staticcharss[4][3]={'A','a',
6、所以是z==3。4.下面程序的作用是将以下给出的字符按其格式读入数组ss中,然后输出行、列号之和为3的数组元素,请在____处填入正确内容。 A a f c B d e b c g f D main() { staticcharss[4][3]={'A','a','f','c','B','d','e','b','C','g','f','D'}; intx,y,z; for(x=0;【1】;x++) for(y=0;【2】;y++) {z=
8、;printf("a=%d,b=%d",a,b);a= ① ; b= ② ; a= ③ ;printf("a=%d,b=%d",a,b);} 答案: ① a+b ② a-b ③ a-b 或者 ① a^b ② b^a ③ a^b【3.2】下面程序的功能是根据近似公式:π2/6≈ 1/12+1/22+1/32+ …… +1/n2,求π值。#include /*数学函数数包含在头函数math.h 中*/double pi(long n){ double s=0.0;