finding the smallest number in an array java code example

Example 1: how to find the multiples of a number in python

def multiples(m, count):
    for i in range(count):
        print(i*m)

Example 2: How to find the length of an array in java

class Main {
  public static void main(String[] args) {
    // Creating an array called x.
    String[] x = new String[]{"This", "Should", "return", "4"};
    // "x.length" finds the length of the array "x".
    System.out.println(x.length);
    // returns 4
  }
}

Example 3: # get the largest number in a list and print its indexes

numbers = 1,3,11,42,12,4001
highestnumber = -999
for i in numbers:
  if i > highestnumber:
    highestnumber = i
print(numbers.index(highestnumber))

Tags:

Java Example