public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);//输入你想要计算的数字
//使用for循环依次往数组里添加
int a[]=new int[10];
for(int i=0;i
System.out.println("请输入一个整数");
a[i]=sc.nextInt();
System.out.println(a[i]);
}
System.out.println(a);
int sum=0;
for(int i=0;i
sum+=a[i];
}
}
System.out.println(sum);
}
完成签到任务
import java.util.Scanner;
public class Test{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int N=sc.nextInt();
int a[]=new int[N];
int max=Integer.MIN_VALUE, min=Integer.MAX_VALUE,
sum=0;
for(int i=0;i
sum+=a[i];
if(a[i]>max) max=a[i];
if(a[i]
System.out.format("%d %d %d",sum, max, min);
}
}
10
1 2 3 4 5 6 7 8 9 10
55 10 1