用JAVA语言编写输入5个数,求出最大最小的数的程序
3个回答
2013-10-19
展开全部
public class RandomTest{
public static void main(String[] args){ int i=1; int o=2; int u=3; int y=4; int t=5; for
public static void main(String[] args){ int i=1; int o=2; int u=3; int y=4; int t=5; for
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-19
展开全部
import java.util.Scanner;
public class Demo {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.println("请输入五个数森链字:");
int count[] = new int[5]; //用数组保存输入的数字
int max = 0; //定义最大值
int min = 0; //定此兄孙义最小值
for (int i = 0; i < 5; i++) {
count[i] = input.nextInt();
if (count[i] > max) {
max = count[i];
}
if (count[i] < min) {
min = count[i];
}
}
System.out.println("最大的数字是:" + max);
System.out.println("最小的尘顷数字是:" + min);
}
}
public class Demo {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.println("请输入五个数森链字:");
int count[] = new int[5]; //用数组保存输入的数字
int max = 0; //定义最大值
int min = 0; //定此兄孙义最小值
for (int i = 0; i < 5; i++) {
count[i] = input.nextInt();
if (count[i] > max) {
max = count[i];
}
if (count[i] < min) {
min = count[i];
}
}
System.out.println("最大的数字是:" + max);
System.out.println("最小的尘顷数字是:" + min);
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-19
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询