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) {
String[] x = new String[]{"This", "Should", "return", "4"};
System.out.println(x.length);
}
}
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))