资源简介
RPN计算器
Program Input
Each line of the input file (prob12.in) contains a series of numbers and operators. The program must evaluate these lines as RPN expressions. All tokens are separated by one or more spaces. Numbers may be negative. Valid operators are +(addition), -(subtraction), *(multiplication) and /(division). The last line of the file contains only the word END:
16 3 7 + *
4 32.125 13 – * 20 +
5 –3 * 4 2 / 6 3 1 – / + +
END
Program Output
The program will print the computed result of each RPN expression on a separate line.
160
96.5
-10
代码片段和文件信息
import java.io.*;
import java.util.*;
public class RPNcalculator {
public static void main(String[] args) {
String fileName=“RPNInput.txt“;
String fileName2=“RPNOutput.txt“;
Scanner inputStream = null;
PrintWriter outputStream = null;
//read
try{
inputStream = new Scanner(new File(fileName)); //try to open the file
}
catch(Exception e){
System.out.println(“Could not open the file named “+ fileName); // if it doesn‘t find it tell them
System.exit(0); // and then exit.
}
//write
try{
outputStream = new PrintWriter(new FileOutputStream(fileName2true)); //try to create the file
}
catch(Exception e){
System.out.println(“Could not open the file named “+ fileName2); // if it doesn‘t find it tell them
System.exit(0); // and then exit.
}
while(inputStream.hasNextLine()){
String equation = inputStream.nextLine();
if (equation==null) break;
Stack tks = new Stack
相关资源
- 简易图像相似度计算器 jdk1.5版
- 分数计算器界面设计
- Java图形用户界面的简易计算器
- java课设-保存计算过程的计算器代码
- 基于Android平台:四则运算计算器源码
- 能够处理括号的Java小计算器
- Android做的计算器
- linux-java调用c语言编译的so动态库-jn
- java 大整数计算器 包含源代码
- Java简单计算器Swing版
- java 简易计算器的实现
- JAVA分数计算器
- Java实现计算器,带界面
- 简易计算器Java Swing实现
- JAVA WindowBuilder 制作的简易粗暴的计算
- Java-保存计算过程的计算器
- JAVA计算器源代码与WINDOWS的计算器长得
- JAVA简易计算器可判断运算符的优先级
- 在eclipse中制作的android 计算器程序
- 计算器java课程设计(完整版).
- Android实现计算器
- Android Studio 简单 体重计算器 源代码
- android科学计算器源码修改原创
- Java实现高级计算器
- java编写的计算器,实现windows标准型计
- Android函数计算器含源码,测试工程
- java地铁票价计算器dijkstra算最短路径
- 用编译原理知识编写的计算器
- android 计算器源代码 含算法
- 用java实现的简易型科学计算器
评论
共有 条评论