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

递归入门

时间:2014-12-02 01:33:12      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   java   on   

 1 import java.io.IOException;
 2 
 3 public class Digui1 {
 4 
 5     public static void main(String[] args) {
 6         // TODO Auto-generated method stub
 7         Digui1  d= new Digui1();
 8         try {
 9             d.printInput();
10         } catch (IOException e) {
11             e.printStackTrace();
12         }
13     }
14     
15     private void printInput() throws IOException {
16          char i = (char) System.in.read(); 
17          if (i != ‘#‘) {
18              printInput();
19          }
20          if (i != ‘#‘) {
21              System.out.print(i); 
22          }         
23     }
24 
25 }

bubuko.com,布布扣

递归入门

标签:style   blog   http   io   ar   color   sp   java   on   

原文地址:http://www.cnblogs.com/hixin/p/4136412.html

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