Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1)

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/14 00:16:30
Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1)

Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1)
Java编程、输入数字个数、平均数、最小值、最大值减去最小值、
write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:
1) the number of integers read in.
2) the average value- which need not be an integer.注意,平均值不是实数!
3) the minimum value of the integers.
4) the maximum difference between any of the integers.
以上要求顺序不能颠倒、跪求!

Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1)
测试通过,基本满足你题目要求,写得不太好
import java.util.*;
import java.util.regex.*;
public class t10
{
public static void main(String [] args)throws InterruptedException
{
Scanner in=new Scanner(System.in);
System.out.println("输入一组数,用逗号分开");
String s = in.next();
number a = new number(s);
average b = new average(s);
min c =new min(s);
dif d= new dif(s);
Thread t1=new Thread(a);
Thread t2=new Thread(b);
Thread t3=new Thread(c);
Thread t4=new Thread(d);
t1.start();
t2.start();
t3.start();
t4.start();
}
}
//整数个数
class number implements Runnable
{
int sum=0;
List dlist=new ArrayList();
public number(String a)
{
String[] str = a.split(",");
for(int i = 0; i < str.length; i++)
{
Pattern pattern = Pattern.compile("[0-9]+");
Matcher matcher = pattern.matcher((CharSequence) str[i]);
boolean result = matcher.matches();
if (result) {
dlist.add(Double.parseDouble(str[i]));}
}
sum=dlist.size();
}
public void run()
{
System.out.println("整数的个数为:"+sum);
}
}
//平均数
class average implements Runnable
{
double sum=0;
double aver=0;
public average(String b)
{
String[] str = b.split(",");
double [] num =new double[str.length];
for(int i = 0; i < str.length; i++)
{
num[i]=Double.parseDouble(str[i]);
}
for (int i = 0; i < num.length; i++)
{
sum=sum+num[i];
}
aver=(double)(sum/num.length);
}
public void run()
{
try{
Thread.sleep(100);
}catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println("平均数为:"+aver);
}
}
//最小的整数
class min implements Runnable
{
double m=0;
List dlist=new ArrayList();
public min(String c)
{
String[] str = c.split(",");
for(int i = 0; i < str.length; i++)
{
Pattern pattern = Pattern.compile("[0-9]+");
Matcher matcher = pattern.matcher((CharSequence) str[i]);
boolean result = matcher.matches();
if (result) {
dlist.add(Double.parseDouble(str[i]));}
}
}
public void run()
{
try{
Thread.sleep(300);
}catch(InterruptedException e)
{
e.printStackTrace();
}
if(dlist.size()!=(0))
{
m=Collections.min(dlist);
System.out.println("最小整数为:"+m);
}
else
{System.out.println("最小整数为:没有整数");}
}
}
//两个相差最大的整数
class dif implements Runnable
{
double min=0;
double max=0;
double bet=0;
List dlist=new ArrayList();
public dif(String d)
{
String[] str = d.split(",");
for(int i = 0; i < str.length; i++)
{
Pattern pattern = Pattern.compile("[0-9]+");
Matcher matcher = pattern.matcher((CharSequence) str[i]);
boolean result = matcher.matches();
if (result) {
dlist.add(Double.parseDouble(str[i]));}
}
}
public void run()
{
try{
Thread.sleep(500);
}catch(InterruptedException e)
{
e.printStackTrace();
}
if(dlist.size()!=(0) && dlist.size()!=(1))
{
min=Collections.min(dlist);
max=Collections.max(dlist);
bet=max-min;
System.out.println("最小整数和最大整数相差:"+bet);
}
else
{
System.out.println("最小整数和最大整数相差:整数少于2个无法计算");
}
}
}

Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1) Java编程、输入数字个数、平均数、最小值、最大值减去最小值、write a JAVA program to read in a sequence of integers and print out the following quantities,each on a new line and in the following order,your program should be:1) Java输入一系列 数字求奇数、偶数、0的个数 C语言编程,输入10个数字计算平均数,并输出大于平均数的元素 从控制输入n个数,计算n个数中偶数的平均数,java如何实现 JAVA编程,输入一个四位数,求四位数的每位数字之和!是JAVA,不是C语言! java编程题:输入三角形行数打印数字三角形.如输入5,打印:1 12 123 1234 12345 求一个C语言编程 输入N个数 求最大值 最小值 平均数 求java程序:输入n个正整数,分成两组求和,求两列数字组合使这两组的和最接近平均数实用价值:商场打折.如:满500返500注意:每组的数字个数不确定(如输入10个数,可能会产出2个数的和跟 怎样在JAVA编程中输入一个数字输出这个数字的拼音?例如:9 jiu19 shi jiu102 yi bai ling er vfp的一道编程题,输入任意的几个数,输出最大值、最小值、总和、平均数.如题 C语言编程:输入一行字符,至少50个,统计其中英文字母,数字,其他字母个数 C语言程序题:任意输入十个数,输出最大最小和平均数,这个程序咋么写啊? 如何用C语言求平均数?输入数据个数不定!我要求不需要输入数字个数啊... 用JAVA编程从键盘输入一个正整数,计算该数的各位数字之和并输出,例如输入数是5246 让大家一个java非常简单的编程:根据输入1到12之间的数字,判断是春夏秋冬哪个季节要求使用方法定义四个季节 java编程,输出3个数中的最大值和最小值 java编程:用户从键盘上输入10个数,分别统计正数、负数、零的个数、平均值、累加和.用户从键盘上输入一个数,程序判断这个数是不是素数,并输出结果.求这两个java编程的写法啊