A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.io.*;
class Test
{
    public static void main(String[] args) throws IOException
        {
                sop();
        }
    public static void sop() throws IOException
        {
            //创建一个缓冲输出流对象
            BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
                char[] zhifu = {'零','一','二','三','四','五','六','七','八','九'};
                int[] zhengxing = new int[1024];
                int ch=0;
                int cr=0;   
                int cc=0;
                System.out.println("请输入一个整数!");
                        try
                        {
                                while((ch = in.read())!=-1)
                        {               
                                    if(ch=='\r')
                                    {
                                            continue;
                                    }
                                    if(ch=='\n')
                                    {       
                                         
                                            while(zhengxing[cc]!=0)
                                            {
                                                    //通过一个算法获取输入的相应int整数值
                                                    int q=(zhengxing[cc++]+2)%10;
                            System.out.print(zhifu[q]);
                                        }                       
                                               System.out.println("");
                                    continue;
                                    }
                                        if(ch<48||ch>57)
                                        {
                                                System.out.println("你的输入不是一个整数");
                                                        sop();
                                        }
                                else
                                    {       
                                         zhengxing[cr++]=ch;               
                                    }
                                }
                        }
                        catch (IOException e)
                        {
                                System.out.println(e.toString());
                        }
         }   
}       


评分

参与人数 1技术分 +1 收起 理由
zzkang0206 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马