-
double fun(double x,double c){double term=1,sum=0;
long d=1;
while(fabs(term)>=c){sum=sum+term;
term=term/d*x;
d++;return sum;
此函数需要两个参数,一个用于 c,另一个用于 x 的值。 使用此功能时,需要添加 cmath 包,因为需要使用 fabs 功能。
long fum(int n){
int i=0;
long sum=0;
while(i<=n){
sum=sum+2*i+1;
i++;return sum;
struct stu{
string id;
string name;
int score;
这是结构定义。
string fun(struct stu stus,int n){int h=0;
for(int i=1;iif(stus[h].scorereturn stus[h].name;
这个函数有两个参数,一个是结构数组 stus,另一个是数组的长度 n。
-
问题 1. 我真的不明白你的意思。 写清楚。
问题 2. #include
using namespace std;
int fun(int n);
main()
int n;
scanf("%d",&n);
printf("the result of you want is:%d",fun(n));
int fun(int n)
if(n==0)
return 1;
else return (2*n+1)+fun(n-1);
问题 3. #include
using namespace std;
struct student
int num;
char *name;
float score;
void cmp(struct student stu,int n);
void main()
struct student stu=,12313,"bbb",65},12312,"ccc",97},12311,"ddd",35}
coutvoid cmp(struct student stu,int n)
float temp=;
int i,temp_i=0;
for(i=0;iif(temptemp=stu[i].score;
temp_i=i;
cout<<"the highest score is"
-
我稍后会给你的。 我先去上课!
1:A(bcd 需要在末尾括号内表示为关键字) 2:b(C 中的函数是并行的,不能嵌套,调用可以嵌套,A 调用 B,B 调用 C。 ) >>>More
1. 如果|x-7|+|3y-12|=0 找到 x,y 的对立值。
所以 x-7=0,3y-12=0,所以 x=7,y=4,所以 x 的对立面是 -7,y 的对立面是 -4 >>>More