C语言编程实验_第1页
C语言编程实验_第2页
C语言编程实验_第3页
C语言编程实验_第4页
C语言编程实验_第5页
已阅读5页,还剩9页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、实验8 指针(P148-P158)说明: 完成以下实验内容后,将本文档改名为“实验8_班级_学号_姓名.doc”,并按规定提交。 第一部分:练习题练习题1用一维数组和指针变量作为函数参数,编程打印某班一门课程的最高分数及其学号。程序代码#include#define ARR_SIZE 40int FindMax(int score, long num,int n,long *pMaxNum);void main()int scoreARR_SIZE,maxScore,n,i;long numARR_SIZE,maxNum;printf(Please enter total number:);s

2、canf(%d,&n);printf(Please enter the number and score:n);for (i=0;in;i+)scanf(%ld%d,&numi,&scorei);maxScore=FindMax(score,num,n,&maxNum);printf(maxScore=%d,maxNum=%ldn,maxScore,maxNum);int FindMax(int score,long num,int n,long *pMaxNum)int i;int maxScore;maxScore=score0;*pMaxNum=num0;for (i=1;imaxSco

3、re)maxScore=scorei;*pMaxNum=numi;return(maxScore);程序运行截图练习题2用二维数组和指针变量作为函数参数,编程打印3个班学生的某门课程成绩的最高分,并指出具有该最高分成绩的学生是第几个班的第几个学生。程序代码#include#define CLASS 3#define STU 10#define ARR_SIZE 40int FindMax(int scoreCLASSARR_SIZE, int m,int n,int *pRow,int *pCol);void main()int scoreCLASSARR_SIZE,maxScore,n,i,

4、j,row,col;printf(Please enter student number in a class:);scanf(%d,&n);printf(Please enter score:n);for (i=0;iCLASS;i+)for(j=0;jn;j+) scanf(%d,&scoreij); maxScore=FindMax(score,n,CLASS,&row,&col);printf(maxScore=%d,class=%d,number=%dn,maxScore,row+1,col+1);int FindMax(int scoreARR_SIZE,int n,int m,i

5、nt *pRow,int *pCol) int i,j,maxScore;maxScore=score00;*pRow=0;*pCol=0;for (i=0;im;i+)for(j=0;jmaxScore)maxScore=scoreij;*pRow=i;*pCol=j;return(maxScore);程序运行截图问题解答思考题1能否使用二维数组或者而为数组的行指针作为函数参数进行编程实现呢?可以,两者都可以作为指针指向函数,从而进行地址传递思考题2利用动态内存分配,编写计算任意m行n列二维数组中最大值的函数。程序代码#include #include int m;int n;int mai

6、n() int *p; int *q; printf(输入行数m列数n: ); scanf(%d %d,&m,&n); p=(int*)calloc(m,n); q=p; printf(输入数组n); for(int i=0;im;i+) for(int j=0;jn;j+) scanf(%d,p+); int max =*q; for(int k=0;kmax) max=*(q+k); printf(max=%dn,max); return 0;程序运行截图练习题4编写返回字符指针函数搜寻一个字符串中第一个字符d,找到返回d的地址,在主函数内用*代替d,然后打印该字符串。程序代码#inclu

7、de #define EMPTY 0char* findfirst(char *, char);int main() char string=do you study math today?; char *ptr; printf(%sn,string); ptr=EMPTY; ptr=findfirst(string, d); if(ptr!=EMPTY) *ptr=*; printf(%sn,string); return 0;char *findfirst(char *s,char d) while(*s!=d)&(*s!=0) s+; if(*s=d) return s; else re

8、turn EMPTY;程序运行截图问题解答思考题1若将函数findfirst中while语句改为:while(*s!=d)&(*s!=0);可以吗?不可以思考题2修改主程序将字符串中的字符d全部替换为*,应如何编程实现。程序代码#include #define EMPTY 0char* find(char *, char);int main() char string=do you study math today?; char *ptr; printf(%sn,string); ptr=EMPTY; do ptr=find(string, d); if(ptr!=EMPTY) *ptr=*;

9、 while(ptr!=0); printf(%sn,string); return 0;char *find(char *s,char d) while(*s!=d)&(*s!=0) s+; if(*s=d) return s; else return EMPTY;程序运行截图练习题5编写函数求从1-n倒数的累加和,要求使用只想函数的指针。程序代码#include double sur(double);double sqrt(double);double cube(double);double sum(int,double(*p)(double);void main()double(*ptr

10、)(double );int s=0;ptr=sur;printf(sum=%.2lfn,sum(4,ptr);double sum(int n,double(*p)(double)double s=0;int k;for(k=1;k=n;k+)s+=(*p)(k);return s;double sur(double x)return(1.0/x);程序运行截图问题解答思考题1根据用户需求选择求平方累加和、立方累加和或倒数累加和。程序代码#include double x(double);double pf(double);double lf(double);double sum(int,d

11、ouble(*p)(double);int main() double(*p)(double); int l; printf(倒数和输入1,平方和输入2,立方和输入3:); scanf(%d,&l); switch(l) case 1: p = x;break; case 2: p = pf;break; case 3: p = lf;break; default: break; int n; printf(输入n:); scanf(%d,&n); printf(sum = %.2lfn,sum(n,p); return 0;double x(double i) return 1/i;doub

12、le pf(double i) return (i*i);double lf(double i) return (i*i*i);double sum(int n, double(*p)(double) double s = 0; for(int k = 1; k = n; k+) s += (*p)(double)k); return s;程序运行截图练习题6输入三个数利用指针存入临时动态分配的变量中,并按从小到大的顺序输出。要求不能交换无名变量中的数据,通过改变指针的指向完成排序。程序代码#include #include int main() float *pa; float *pb; f

13、loat *pc; float *pt; if(pa=(float*)malloc(sizeof(float) scanf(%f,pa); else printf(malloc for pa is failed!n); if(pb=(float*)malloc(sizeof(float) scanf(%f,pb); else printf(malloc for pb is failed!n); if(pc=(float*)malloc(sizeof(float) scanf(%f,pc); else printf(malloc for pc is failed!n); if(*pa*pb) p

14、t=pa; pa=pb; pb=pt; if(*pa*pc) pt=pa; pa=pc; pc=pt; if(*pb*pc) pt=pb; pb=pc; pc=pt; printf(%.2f %.2f %.2fn,*pa,*pb,*pc); return 0;程序运行截图第二部分:自测练习自测练习2输入一个3*4的数组,先找出每一行中的最大元素,在分别除改行中的所有元素,最后输出数组。要求定义函数形参时,如果把二维数组定义为指针,调用时要用一级指针的地址。程序代码#include #include float* func(float s134,float *p1)int m,n;float s

15、t;for(m=0;m3;m+)for(n=0;ns1mn);elsep1=&s1mn;st=*p1;p1=&s1m+10;for(n=0;n4;n+)s1mn=s1mn/st;return &s100;int main(void)float s34,*p,*q;int i,j,k;for(i=0;i12;i+)scanf(%d,&si/4i%4);p=&s00;q=func(s,p);for(j=0;j3;j+)for(k=0;k4;k+)printf(%0.2f ,*q);q+;printf(n);return 0;程序运行截图自测练习4编程把命令行中的字符串(由数字字符组成)转换成整数并

16、累加输出。程序代码#include #include #include #define N 100int main(void)char sN,*p=NULL;int i,j,k,len,sum,numN;j=0,k=0,sum=0;for(i=0;iN;i+)numi=0;gets(s);len=strlen(s);p=&sN-1;for(i=0;i=0)&(*p=9)numj+=(pow(10,k)*(*p)-0);k+;if(*p= )j+;k=0;p-; for(i=0;iN;i+)sum+=numi;printf(%dn,sum);return 0;程序运行截图自测练习5程序代码#in

17、clude float matrix(float (*a)3,int n)int i,j;float sum=0;for(i=0;i3;i+)for(j=0;j3;j+)if(i=j)sum=sum+*(*(a+i)+j);if(j=2-i & i!=j)sum=sum+*(*(a+i)+2-i);return sum;int main(void)int i,j;float a33;printf(Input the 3x3 arrayn);for(i=0;i3;i+)for(j=0;j3;j+)scanf(%f,&aij);printf(sum=%0.2f n,matrix(a,3);return 0;程序运行截图自测练习6程序代码#include #include void fsort(

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论