kotlin 分割字符
Given a character, we have to find its ASCII value.
给定一个字符,我们必须找到其ASCII值。
Example:
例:
Input:
c = 'A'
Output:
65
在Kotlin中查找字符的ASCII值的程序 (Program to find ASCII value of a character in Kotlin)
package com.includehelp.basic
import java.util.*
//Main Function, entry Point of Program
fun main(args: Array<String>) {
// InputStream to get Input
val scanner = Scanner(System.`in`)
//Input Character
print("Enter Character : ")
val c = scanner.next()[0]
//Get Ascii Value of Character
val ascii = c.toInt();
//Print AscII Value
println("ASCII Code of $c is $ascii");
}
Output
输出量
RUN 1:
Enter Character : A
ASCII Code of A is 65
---
Run 2:
Enter Character : a
ASCII Code of a is 97
---
Run 3:
Enter Character : 3
ASCII Code of 3 is 51
---
run 4:
Enter Character : #
ASCII Code of # is 35
翻译自: https://www.includehelp.com/kotlin/find-ascii-value-of-a-character.aspx
kotlin 分割字符
最后
以上就是认真荔枝最近收集整理的关于kotlin 分割字符_Kotlin程序查找字符的ASCII值的全部内容,更多相关kotlin内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复