java源代码实例
<div class="msgfont">java dos输入输出Java code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->import java.util.*;public class DaoXu { /** * @param args */ public static void main(String[] args) { // TODO 自动生成方法存根 System.out.println("请输入单个字符并回车: "); Scanner c = new Scanner(System.in); String[] ch = new String[5]; for(int i=0; i<5; i++){ ch = c.next(); } //Arrays.sort(ch); System.out.print("倒序输出: "); for (int j = ch.length-1; j >= 0; j--) { System.out.print(ch+" "); } }}
页:
[1]