题目
请设计一个算法:输入实数a1,a2,...aN,输出a1,a2,..aN中最大的数和最小的数,并画出程序图.
急
急
提问时间:2021-12-07
答案
用冒泡排序, 把数组排序成从大到小, 然后分别取出第一项 和最后一项 就分别是最大和最小值了
public class BubbleSort {
public void sort(int[] a) {
int temp = 0;
for (int i = a.length - 1; i > 0; --i) {
for (int j = 0; j < i; ++j) {
if (a[j + 1] < a[j]) {
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
}
public class BubbleSort {
public void sort(int[] a) {
int temp = 0;
for (int i = a.length - 1; i > 0; --i) {
for (int j = 0; j < i; ++j) {
if (a[j + 1] < a[j]) {
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
}
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
最新试题
- 1甲导体电阻为100欧姆,乙导体为120欧姆,要使得两导体的电流相同,则加在两导体上的电压之比为
- 2the child has big eyes,the child has small eyes. 改为选择疑问句.
- 3关于狗的文言文和翻译,
- 4my on radio my and the dictionary desk are怎么连词啊
- 5冷艳,幽芳,玷污的近义词
- 6英语翻译
- 73.14×2X+2X=16.56怎么解
- 8从《春》和《济南的冬天》里得到写作上的什么启示
- 9已知a2+2a-1=0,求(a−2a2+2a-a−1a2+4a+4)÷a−4a+2的值.
- 10“删掉词语”英语应该用哪个短语?cut down/out take away/out
热门考点