- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C数组
第6章 数组;内容提要;数组的用处 ;数组(Array);数组的定义与初始化;数组的使用;数组的特点;只能逐个对数组元素进行操作(字符数组例外);例6.1 ;例6.1;例6.2 —打印出最高分及其学生序号 ;#include stdio.h
#define ARR_SIZE 40
main()
{
float score[ARR_SIZE], maxScore;
int n, i;
long maxNum, num[ARR_SIZE];
printf(Please enter total number:);
scanf(%d, n);
printf(Please enter the number and score:\n);
for (i=0; in; i++)
{
scanf(%ld%f, num[i], score[i]);
}
maxScore = score[0];
maxNum = num[0];
for (i=1; in; i++)
{
if (score[i] maxScore)
{
maxScore = score[i];
maxNum = num[i];
}
}
printf(maxScore = %.0f, maxNum = %ld\n, maxScore, maxNum);
};#include stdio.h
#define ARR_SIZE 40
float FindMax(float arr,int n);
main()
{
float score[ARR_SIZE], maxScore;
int n, i;
printf(Please enter total number:);
scanf(%d, n);
printf(Please enter the score:\n);
for (i=0; in; i++)
{
scanf(%f, score[i]);
}
maxScore = FindMax(score,n);
printf(maxScore = %.0f\n, maxScore);
}; ;简单变量作函数参数 ;数组作函数参数 ;现场演示排序算法;交换法排序;交换法排序;选择法排序;选择法排序;现场演示查找算法;顺序查找;折半查找;折半查找;int BinSearch(long a[], int n, long x)
{
int low, high, mid;
low = 0;
high = n - 1;
while (low = high)
{
mid = (high + low) / 2;
if (x a[mid])
{
low = mid + 1;
}
else if (x a[mid])
{
high = mid - 1;
}
else
{
return (mid);
}
}
return(-1);
};字符串(String)与字符数组;字符数组的初始化;逐个输入输出;scanf();gets();字符串处理函数;‘\0’作为字符串结束符的天生缺陷;例6.9 ;#include stdio.h
#include string.h
#define ARRA_SIZE 80
main()
{
int n, num;
char str[ARRA_SIZE], min[ARRA_SIZE];
printf(Please enter five names:\n);
gets(str);
strcpy(min, str);
for (n=1; n5; n++)
{
gets(str);
if (strcmp(str, min) 0)
{
strcpy(min, str);
}
}
printf(The min is:);
puts(min);
};二维数组的定义;二维数组的存储结构;二维数组的输入和输出;向函数传递二维数组;例6.
您可能关注的文档
最近下载
- 2024-2025学年四川省成都市第七中学高一(上)月考物理试卷(10月)(含答案).docx VIP
- 育婴员职业守则课件.pptx VIP
- 蔬菜生产技术课程标准.docx VIP
- 2025中考语文现代文阅读总复习-第1部分 专题12:记叙文阅读之主旨把握(讲义)(教师版).docx VIP
- 硅铁冶炼培训课件.pptx VIP
- 水土保持工程监理规划.pdf VIP
- 政务云平台 第4部分:系统部署和迁移要求_地方标准编制说明.pdf
- DB37T-政务云平台监管指标体系及编制说明.pdf VIP
- 高中物理必修二第一章检试测卷.doc VIP
- DB37T 4394.4—2024政务云平台 第4部分:系统部署和迁移要求.pdf VIP
文档评论(0)