一、实验目得1.学会结构体类型变量得定义与使用方法。2.能够运用结构体数组编写程序。3.学会结构体指针得定义使用方法。4.能够运用结构体指针作函数参数编写程序。二、实验环境 (调试程序所使用得软硬件环境)软件环境:VC++6、0硬件环境:宏基 Intel 奔 4 主频 2、8GHz,内存 256MB三、实验内容、结果及分析1、题目 1.建立一个有 n(3#include #include using namespace std;const int N=10;struct rem{String num;string name;double mark[3];double all;};int main (){int n,i,m;double max;rem loq[N];cout<<"请输入人数"<>n;for(i=0;i>loq[i]、num>>loq[i]、name>>loq[i]、mark[0] >>loq[i]、mark[1] >>loq[i]、mark[2];}for(i=0;imax){max=loq[i]、all;m=i;}}cout<<"总分最高得学生为"<#include #include using namespace std;const int N=15;struct date{int year;int month;int day;};struct corre{string name;date bir;string tel;};int main (){corre a[N];int n,i,j;string m;cout<<"请输入人...