用JAVA编写一个程序,提示用户输入一个字符串,显示它的长度和第一个字符
时间: 2024-05-09 07:20:12 浏览: 74
JAVA字符串处理函数
的ASCII码值。
代码如下:
```java
import java.util.Scanner;
public class StringLengthAndASCIICode {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入一个字符串:");
String str = scanner.nextLine();
int length = str.length();
char firstChar = str.charAt(0);
int asciiCode = (int) firstChar;
System.out.println("该字符串的长度为:" + length);
System.out.println("该字符串的第一个字符为:" + firstChar);
System.out.println("该字符串的第一个字符的ASCII码值为:" + asciiCode);
}
}
```
运行结果如下:
```
请输入一个字符串:hello world
该字符串的长度为:11
该字符串的第一个字符为:h
该字符串的第一个字符的ASCII码值为:104
```
阅读全文