C-study/07/2/README.md
2021-12-06 21:15:31 +08:00

63 lines
999 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

【问题描述】
输入 `n0<n<=10`再输入n个数利用指针置逆后重新输出再输入一个要查找的数找到了输出在数组中对应的下标没找到输出no循环3次查找3个数据请设计四个子函数
1. void input(int a[],int n) 实现向数组a输入n个数
2. void output(int a[],int n) 实现将数组a的前n个数输出
3. void reserve(int a[],int n) 实现将数组a的前n个数置逆
4. int find(int a[],int n,int x) 实现在数组a的前n个数中查找x若找到返回元素下标若没找到返回-1.
【样例输入】
```
7
10 20 30 40 50 60 70
20
15
60
```
【样例输出】
```
n=
输入数据:
置逆后:
70 60 50 40 30 20 10
x=
下标=5
x=
没找到
x=
下标=1
```
# 运行结果
成功通过编译, 且无编译警告
共有测试数据:1
平均占用内存:1.953K
平均CPU时间:0.00564S
平均墙钟时间:0.00564S
测试数据 评判结果
测试数据1 完全正确