kotlin 判断数字

A prime number is a natural number that is greater than 1 and cannot be formed by multiplying two smaller natural numbers.

质数是大于1的自然数,不能通过将两个较小的自然数相乘而形成。

Given a number num, we have to check whether num is a prime number or not.

给定数字num ,我们必须检查num是否是质数。

Example:

例:

    Input:
    num = 83

    Output:
    83 is a Prime Number

检查Kotlin中数字是否为质数的程序 (Program to check whether a number is prime or not in Kotlin)

/**
 * Kotlin program to check given number is Prime Number or Not
*/

package com.includehelp.basic

import java.util.*


//Function to check Prime Number
fun isPrimeNo(number: Int): Boolean {
    if(number<2) return false
    for (i in 2..number/2) {
        if (number % i == 0) {
            return false
        }
    }
    return true
}

//Main Function, Entry Point of Program
fun main(arg: Array<String>) {
    val sc = Scanner(System.`in`)

    //Input Number
    println("Enter Number  : ")
    val num: Int = sc.nextInt()

    //Call Function to Check Prime Number
    if (isPrimeNo(num)) {
        println("$num is a Prime Number")
    } else {
        println("$num is not a Prime Number")
    }
}

Output

输出量

RUN 1:
Enter Number  :
83
83 is a Prime Number
---
RUN 2:
Enter Number  :
279
279 is not a Prime Number
---
RUN 3:
Enter Number  :
29
29 is a Prime Number


翻译自: https://www.includehelp.com/kotlin/check-number-is-prime-or-not.aspx

kotlin 判断数字

Logo

开源鸿蒙跨平台开发社区汇聚开发者与厂商,共建“一次开发,多端部署”的开源生态,致力于降低跨端开发门槛,推动万物智联创新。

更多推荐