编写一个程序,求出整数数组中最小元素的下标。如果这样的元素个数大于1,则返回下标最小的数的下标。

public class tenth {
    public static void main(String[] args) {
        int[] num={99,545,2132,482,3,5,4,8,6};
        int min=num[0];//定义最小的
        int n=0;//标记
        for(int i=0;i

你可能感兴趣的:(编写一个程序,求出整数数组中最小元素的下标。如果这样的元素个数大于1,则返回下标最小的数的下标。)