码迷,mamicode.com
首页 > 其他好文 > 详细

逆向打印

时间:2016-11-14 19:40:26      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:rgs   int   --   put   can   channel   system.in   clear   nbsp   

import java.util.Scanner;

class  work1
{
 public static void main(String[] args) 
 {
  Scanner input = new Scanner (System.in);
  System.out.println("请输入5句话:");
  String[] names = new String[5];
  for(int i=0;i<names.length;i++){
   System.out.print("第"+(i+1)+"句:");
   names[i]=input.next();
  }
  for(int i=names.length-1;i>=0;i--){
   System.out.println(names[i]);
  }
 }
}

 
 
 
好文要顶 

逆向打印

标签:rgs   int   --   put   can   channel   system.in   clear   nbsp   

原文地址:http://www.cnblogs.com/Huanghaihui/p/6062941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!