Answers for "finding the smallest number in an array java"

3

how to find the multiples of a number in python

def multiples(m, count):
    for i in range(count):
        print(i*m)
Posted by: Guest on May-15-2020
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
  }
}
Posted by: Guest on February-22-2020
-1

# 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))
Posted by: Guest on January-29-2020

Code answers related to "finding the smallest number in an array java"

Python Answers by Framework

Browse Popular Code Answers by Language