1 Star 0 Fork 0

彭滟铃/lagou-work2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Work3.java 424 Bytes
一键复制 编辑 原始数据 按行查看 历史
彭滟铃 提交于 2022-03-20 16:13 . 第一阶段模块一作业
public class Work3{
public static void main(String[] args) {
//1.定义5个元素数组
int arr[] = {32, 45, 78, 12, 56};
//3.遍历数组求数组中的最小值
int temp = arr[0];
for (int i = 1; i < arr.length; i++) {
if (temp > arr[i]) {
temp = arr[i];
}
}
System.out.println("数组中最小值是:" + temp);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pengyanling/lagou-work2.git
git@gitee.com:pengyanling/lagou-work2.git
pengyanling
lagou-work2
lagou-work2
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385