123456789101112 |
- package com.sf;
- public class Test1 {
- public static void main(String[] args) {
- int[] arr = {1,2,3,4,5};
- char[] word = {'h','e','l','l','o'};
- String[] heros = {"袁隆平","邓稼先","钱学森"};
- System.out.println(arr);
- System.out.println(word);
- System.out.println(heros);
- }
- }
|