实验8 指针(P148-P158)
说明:                                                                         
完成以下实验内容后,将本文档改名为“实验8_班级_学号_姓名.doc”,并按规定提交。 
第一部分:练习题
练习题1
用一维数组和指针变量作为函数参数,编程打印某班一门课程的最高分数及其学号。
程序代码
#include<stdio.h>
#define ARR_SIZE 40
int FindMax(int score[], long num[],int n,long *pMaxNum);
void main()
{
    int score[ARR_SIZE],maxScore,n,i;
    long num[ARR_SIZE],maxNum;
    printf("Please enter total number:");
    scanf("%d",&n);
    printf("Please enter the number and score:\n");
    for (i=0;i<n;i++)
    {
        scanf("%ld%d",&num[i],&score[i]);
    }
    maxScore=FindMax(score,num,n,&maxNum);
    printf("maxScore=%d,maxNum=%ld\n",maxScore,maxNum);
}
int FindMax(int score[],long num[],int n,long *pMaxNum)
{
    int i;
    int maxScore;
    maxScore=score[0];
    *pMaxNum=num[0];
    for (i=1;i<n;i++)
    {
指针与二维数组        if (score[i]>maxScore)
        {
            maxScore=score[i];
            *pMaxNum=num[i];
        }
    }
    return(maxScore);
}
程序运行截图
练习题2
用二维数组和指针变量作为函数参数,编程打印3个班学生的某门课程成绩的最高分,并指出具有该最高分成绩的学生是第几个班的第几个学生。
程序代码
#include<stdio.h>
#define CLASS 3
#define STU 10
#define ARR_SIZE 40
int FindMax(int score[CLASS][ARR_SIZE], int m,int n,int *pRow,int *pCol);
void main()
{
    int score[CLASS][ARR_SIZE],maxScore,n,i,j,row,col;
   
    printf("Please enter student number in a class:");
    scanf("%d",&n);
    printf("Please enter score:\n");
    for (i=0;i<CLASS;i++)
    {
        for(j=0;j<n;j++)
        {
        scanf("%d",&score[i][j]);
        }
    }
    maxScore=FindMax(score,n,CLASS,&row,&col);
    printf("maxScore=%d,class=%d,number=%d\n",maxScore,row+1,col+1);
}
int FindMax(int score[][ARR_SIZE],int n,int m,int *pRow,int *pCol)
{
    int i,j,maxScore;
    maxScore=score[0][0];
    *pRow=0;
    *pCol=0;
    for (i=0;i<m;i++)
    {
        for(j=0;j<n;j++)
        {
            if(score[i][j]>maxScore)
            {
                maxScore=score[i][j];
                *pRow=i;
                *pCol=j;
            }
        }
    }
    return(maxScore);
}
程序运行截图
问题解答
思考题1
能否使用二维数组或者而为数组的行指针作为函数参数进行编程实现呢?
可以,两者都可以作为指针指向函数,从而进行地址传递
思考题2
利用动态内存分配,编写计算任意m行n列二维数组中最大值的函数。
程序代码
#include <stdio.h>
#include <stdlib.h>
int m;
int n;
int main()
{
    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;i<m;i++)
        for(int j=0;j<n;j++)
            scanf("%d",p++);
    int max =*q;
    for(int k=0;k<m*n;k++)
        if(*(q+k)>max)
            max=*(q+k);
    printf("max=%d\n",max);
    return 0;
}
程序运行截图
练习题4

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。