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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.io.BufferedReader;
import java.io.BufferedWriter;

import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

/*项目根路径下有个questions.txt文件内容如下:
5+5
150-25
155*155
2555/5
要求:读取内容计算出结果,将结果写入到results.txt文件中*/
public class Duxieyunsuan {

        public static void main(String[] args) throws IOException {
                BufferedReader bf = new BufferedReader(new FileReader("questions.txt"));
                BufferedWriter bw = new BufferedWriter(new FileWriter("results.txt"));
                String s;
                int n =0;
                while((s=bf.readLine())!=null){
                        n++;
                        String[] s1 = s.split("\\+|\\-|\\*|\\/");
                        if(n==1){
                        int a = Integer.parseInt(s1[0]) + Integer.parseInt(s1[1]);
       
                        bw.write("5+5="+a);
                        bw.newLine();
                        }
                        if(n==2){
                        int b = Integer.parseInt(s1[0]) - Integer.parseInt(s1[1]);
                       
                        bw.write("150-25="+b);
                        bw.newLine();
                        }
                        if(n==3){
                        int c = Integer.parseInt(s1[0]) * Integer.parseInt(s1[1]);
                       
                        bw.write("155*155="+c);
                        bw.newLine();
                        }
                        if(n==4){
                        int d = Integer.parseInt(s1[0]) / Integer.parseInt(s1[1]);
                       
                        bw.write("2555/5="+d);
                       
                        bw.flush();
                        }

                }
                bw.close();
                bf.close();

        }

}

6 个回复

倒序浏览
可以的,楼主还可以手动加密很强势
来自宇宙超级黑马专属苹果客户端来自宇宙超级黑马专属苹果客户端
回复 使用道具 举报
我们还没学,但是老师昨天貌似提了一下这个题,也不知道对不对
来自宇宙超级黑马专属安卓客户端来自宇宙超级黑马专属安卓客户端
回复 使用道具 举报
回复 使用道具 举报
烟雨清寒时 发表于 2017-4-11 07:46
可以的,楼主还可以手动加密很强势

只能针对这道题,,还有改善空间的呵呵
回复 使用道具 举报
如果随机产生加减乘除怎么办
回复 使用道具 举报
我的想法是可以和码表联系起来
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马