String类的 public char charAt(int index)方法可以得到当前字符串Index位置上的一个字符。编写程序,使用该方法得到一个字符串中的第一个和最后一个字符。
时间: 2024-05-12 13:15:02 浏览: 78
可以使用如下代码来获取一个字符串的第一个和最后一个字符:
```java
String str = "Hello, world!";
char firstChar = str.charAt(0);
char lastChar = str.charAt(str.length()-1);
System.out.println("第一个字符为:" + firstChar + ",最后一个字符为:" + lastChar);
```
输出结果为:
```
第一个字符为:H,最后一个字符为:!
```
其中,`charAt()`方法用于获取指定索引位置上的字符,索引从0开始,因此第一个字符的索引为0,最后一个字符的索引为字符串长度-1。
相关问题
public char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
好的,下面是使用 `charAt` 方法得到一个字符串中的第一个和最后一个字符的示例代码:
```java
public class Main {
public static void main(String[] args) {
String str = "Hello World";
char first = str.charAt(0);
char last = str.charAt(str.length() - 1);
System.out.println("第一个字符是:" + first);
System.out.println("最后一个字符是:" + last);
}
}
```
输出结果为:
```
第一个字符是:H
最后一个字符是:d
```
在代码中,我们先定义了一个字符串 `str`,然后使用 `charAt` 方法获取了字符串的第一个和最后一个字符。其中,第一个字符的下标为 0,最后一个字符的下标为字符串长度减一。最后,我们将获取到的字符打印输出。
使用javapublic char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
好的,以下是使用Java编写的程序,可以得到一个字符串中的第一个和最后一个字符:
```java
public class FirstAndLastChar {
public static void main(String[] args) {
String str = "Hello World";
char firstChar = str.charAt(0);
char lastChar = str.charAt(str.length() - 1);
System.out.println("The first character of the string is: " + firstChar);
System.out.println("The last character of the string is: " + lastChar);
}
}
```
在这个程序中,我们首先定义了一个字符串 `str`,然后使用 `charAt()` 方法得到了字符串的第一个和最后一个字符。其中,第一个字符的位置是0,最后一个字符的位置是字符串长度减1(因为字符串下标从0开始)。
最后,我们使用 `System.out.println()` 方法将得到的结果输出到控制台。
阅读全文