北科大C语言程序设计实验报告8指针练习题代码2次上机课内容Word格式.docx
- 文档编号:16219963
- 上传时间:2022-11-21
- 格式:DOCX
- 页数:9
- 大小:23.12KB
北科大C语言程序设计实验报告8指针练习题代码2次上机课内容Word格式.docx
《北科大C语言程序设计实验报告8指针练习题代码2次上机课内容Word格式.docx》由会员分享,可在线阅读,更多相关《北科大C语言程序设计实验报告8指针练习题代码2次上机课内容Word格式.docx(9页珍藏版)》请在冰豆网上搜索。
2.练习题二
纠错:
intFindMax(intscore[][STU],intn,intm,int*pRow,int*pCol)STU改为ARR_SIZE
#include<
stdio.h>
#defineCLASS3
#defineARR_SIZE40
intFindMax(intscore[CLASS][ARR_SIZE],intn,intm,int*pRow,int*pCol);
voidmain()
{
intscore[CLASS][ARR_SIZE],i,j,n,maxScore,row,col;
printf("
Pleaseenterstudentnumberinaclass:
"
);
scanf("
%d"
&
n);
Pleaseenterscore:
\n"
for(i=0;
i<
CLASS;
i++)
{
for(j=0;
j<
n;
j++)
scanf("
score[i][j]);
}
maxScore=FindMax(score,n,CLASS,&
row,&
col);
maxScore=%d,class=%d,number=%d\n"
maxScore,row+1,col+1);
}
intFindMax(intscore[][ARR_SIZE],intn,intm,int*pRow,int*pCol)
inti,j,maxScore;
maxScore=score[0][0];
*pRow=0;
*pCol=0;
m;
if(score[i][j]>
maxScore)
{
maxScore=score[i][j];
*pRow=i;
*pCol=j;
}
return(maxScore);
思考题及问题:
1答案:
②答案:
函数文本(修改部分红色字体标注)
3.练习题三
intstrlength(char*);
intn1,n2;
char*list1="
Seenoevil,hearnoevil,"
;
char*list2="
blindanddeaf?
n1=strlength(list1);
n2=strlength(list2);
puts(list1);
Thelengthoflist1=%d\n"
n1);
puts(list2);
Thelengthoflist2=%d\n"
n2);
intstrlength(char*s)
intn=0;
while(*s!
='
\0'
)
n++;
s++;
returnn;
①答案:
试编写strcmp函数,源程序文本:
4.练习题四
doublecube(double);
doublesum(int,double(*p)(double));
double(*ptr)(double);
ptr=cube;
sum=%.2lf\n"
sum(4,ptr));
doublesum(intn,double(*p)(double))
doubles=0;
intk;
for(k=1;
k<
=n;
k++)
s+=(*p)(1.0/k);
returns;
doublecube(doublex)
return(x*x*x);
源程序文本(修改部分红色字体标注)
5.练习题五
6.练习题六
自测练习
1.自测练习一
源程序文本:
2.自测练习二
3.自测练习三
4.自测练习四
5.自测练习五
修改后的源程序文本(修改部分红色字体标注):
6.自测练习六(选做)
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 北科大 语言程序设计 实验 报告 指针 练习题 代码 上机 内容