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

1217 实验四 递归下降语法分析程序设计

时间:2016-01-07 14:49:39      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.Scanner;

public class dealMain {

public dealMain() {
// TODO 自动生成的构造函数存根
String allChar = new String();
Scanner input=new Scanner(System.in);//定义键盘接收数据
System.out.print("请输入:");
allChar = input.next();
char[] p =allChar.toCharArray();
for (int i = 0; i < p.length-1; i++) {
char c = p[i];
if((c==‘/‘||c==‘*‘||c==‘+‘||c==‘-‘||c==‘=‘)){
if(p[i+1]==‘/‘||p[i+1]==‘*‘||p[i+1]==‘+‘||p[i+1]==‘-‘||p[i+1]==‘=‘){
System.out.println("符号语法错误");
System.exit(0);
}else if(i==0&&c!=‘-‘){
System.out.println("符号语法错误");
System.exit(0);
}
}
if(48<=c&&c<=57){
if((p[i+1]>=65&&p[i+1]<=90)||(p[i+1]>=97&&p[i+1]<=122)){
System.out.println("变量语法错误");
System.exit(0);
}
}
if((p[i+1]>=65&&p[i+1]<=90)||(p[i+1]>=97&&p[i+1]<=122)){
if(48<=c&&c<=57){
System.out.println("变量语法错误");
System.exit(0);
}
}
}
System.out.println("是正确的表达式");
}
public static void main(String[] args) {
new dealMain();

}

}

1217 实验四 递归下降语法分析程序设计

标签:

原文地址:http://www.cnblogs.com/qing8/p/5109823.html

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