stack3

来源:互联网 发布:sql 字段内容替换 编辑:程序博客网 时间:2024/06/08 04:00

package Question_8;

public class Input_ {
    public String InputString_() {
        String value = null;
        while (true) {
            System.out.println("    " + "请输入你要计算的字符");

            try {
                byte[] buf = new byte[30];
                System.in.read(buf);
                value = new String(buf).trim();

                break;

            } catch (Exception e) {
                System.out.println("    " + "输入异常,请重新输入");
                continue;
            }
        }
        return value;
    }

}
public class Run_clsStack {
    // private static Object str;

    public static void main(String[] args) {
        for (int i = 0; i < 100; i++) {
            if (i < 100) {
                Count cls = new Count();
                Input_ detail = new Input_();
                clsStack_ cls1 = new clsStack_();

                String str = detail.InputString_();
                double db = cls1.getValue(str);

                // double db = cls.countExpression(str);
                System.out.print(db);

            } else {
                break;
            }
        }
    }
}

原创粉丝点击