kotlin 查找id_Kotlin程序在矩阵中查找偶数和奇数的频率
生活随笔
收集整理的這篇文章主要介紹了
kotlin 查找id_Kotlin程序在矩阵中查找偶数和奇数的频率
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
kotlin 查找id
Given a matrix, we have to find frequencies of even and odd numbers.
給定一個(gè)矩陣,我們必須找到偶數(shù)和奇數(shù)的頻率。
Example:
例:
Input:matrix:[4, 5][6, 0][9, 2]Output:Even Elements Frequency : 4Odd Elements Frequency : 2在Kotlin中尋找矩陣中偶數(shù)和奇數(shù)頻率的程序 (Program to find frequencies of even and odd numbers in a matrix in Kotlin)
package com.includehelpimport java.util.*// Main function, Entry Point of Program fun main(args: Array<String>) {//variable of rows and colval rows: Intval column: Intvar oddCount = 0var evenCount = 0//Input Streamval scanner = Scanner(System.`in`)//Input no of rows and columnprint("Enter the number of rows and columns of matrix : ")rows = scanner.nextInt()column = scanner.nextInt()//Create Arrayval matrixA = Array(rows) { IntArray(column) }//Input Matrixprintln("Enter the Elements of First Matrix ($rows X $column} ): ")for(i in matrixA.indices){for(j in matrixA[i].indices){print("matrixA[$i][$j]: ")matrixA[i][j]=scanner.nextInt()//count Odd and Even elements Frequencyif(matrixA[i][j]%2==0) evenCount++ else oddCount++}}//print Matrix Aprintln("Matrix A : ")for(i in matrixA.indices){println("${matrixA[i].contentToString()} ")}//Print Frequencyprintln("Even Elements Frequency : $evenCount")println("Odd Elements Frequency : $oddCount") }Output
輸出量
Run 1: Enter the number of rows and columns of matrix : 2 4 Enter the Elements of First Matrix (2 X 4} ): matrixA[0][0]: 3 matrixA[0][1]: 4 matrixA[0][2]: 5 matrixA[0][3]: 7 matrixA[1][0]: 0 matrixA[1][1]: 9 matrixA[1][2]: 1 matrixA[1][3]: -4 Matrix A : [3, 4, 5, 7] [0, 9, 1, -4] Even Elements Frequency : 3 Odd Elements Frequency : 5 ----------- Run 2: Enter the number of rows and columns of matrix : 3 2 Enter the Elements of First Matrix (3 X 2} ): matrixA[0][0]: 4 matrixA[0][1]: 5 matrixA[1][0]: 6 matrixA[1][1]: 0 matrixA[2][0]: 9 matrixA[2][1]: 2 Matrix A : [4, 5] [6, 0] [9, 2] Even Elements Frequency : 4 Odd Elements Frequency : 2翻譯自: https://www.includehelp.com/kotlin/find-frequencies-of-even-and-odd-numbers-in-a-matrix.aspx
kotlin 查找id
總結(jié)
以上是生活随笔為你收集整理的kotlin 查找id_Kotlin程序在矩阵中查找偶数和奇数的频率的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 颐和园禁止儿童滑板车进园吗
- 下一篇: c构造函数和析构函数_C ++构造函数和