kotlin 数组加元素_Kotlin程序在数组中查找最大元素

kotlin 数组加元素

Given an array, we have to find the largest element.

给定一个数组,我们必须找到最大的元素。

Example:

例:

    Input:
    arr = [45, 67, 8, 9, 8, 43, 0, -34, -32, 65]

    Output:
    Largest element: 67

在Kotlin中寻找数组中最大元素的程序 (Program to find largest element in an array in Kotlin)

package com.includehelp

import java.util.*

//Main Function entry Point of Program
fun main(args: Array<String>) {
    //Input Stream
    val s = Scanner(System.`in`)

    //Input Array Size
    print("Enter number of elements in the array: ")
    val size = s.nextInt()

    //Create Integer array of Given size
    val intArray = IntArray(size)

    //Input array elements
    println("Enter Arrays Elements:")
    for (i in intArray.indices) {
        print("intArray[$i] : ")
        intArray[i] = s.nextInt()
    }

    //Assign First Elements of array as Largest
    var largest = intArray[0]

   for (i in 1 until intArray.size) {
       //compare largest with Array Elements value
        if (largest < intArray[i]) {
            //assign array elements into largest
            largest = intArray[i]
        }
    }

    //Alternatively we can also use max() method of Arrays Class 
    //in kotlin to find maximum Array Elements
    //var largest = intArray.max()

    //Print Array Elements
    println("Array : ${intArray.contentToString()} ")

    //Print Largest Array Value
    println("Largest Elements of Array is : $largest")
}

Output

输出量

 Run 1:
 -----
Enter number of elements in the array: 10
Enter Arrays Elements:
intArray[0] : 45
intArray[1] : 67
intArray[2] : 8
intArray[3] : 9
intArray[4] : 8
intArray[5] : 43
intArray[6] : 0
intArray[7] : -34
intArray[8] : -32
intArray[9] : 65
Array : [45, 67, 8, 9, 8, 43, 0, -34, -32, 65]
Largest Elements of Array is : 67
--------
Run 2:
----
Enter number of elements in the array: 6
Enter Arrays Elements:
intArray[0] : 0
intArray[1] : -9
intArray[2] : -45
intArray[3] : -6
intArray[4] : -23
intArray[5] : -87
Array : [0, -9, -45, -6, -23, -87]
Largest Elements of Array is : 0


翻译自: https://www.includehelp.com/kotlin/find-largest-element-in-an-array.aspx

kotlin 数组加元素

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值