Demo02.java 284 B

12345678910111213141516
  1. package J20250714.demo04;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Demo02
  6. * @description
  7. * @create 2025/7/14
  8. */
  9. public class Demo02 {
  10. public static void main(String[] args) {
  11. String s="hello";
  12. char c = s.charAt(0);
  13. System.out.println(c);
  14. }
  15. }