judge.java
来自「此程序使用在java环境下开发的」· Java 代码 · 共 28 行
JAVA
28 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package bianyi;/** * * @author lina */public class Judge { static boolean letter(char c) {if((c>='a'&&c<='z')||(c>='A'&&c<='Z')||c=='.')return true; else return false; } static boolean figure(char c) { if(c>='0'&&c<='9')return true; else return false; } static boolean denotation(char c) { if(c=='+'||c=='-'||c=='*'||c=='/'||c=='{'||c=='}'||c=='%'||c=='='||c=='<'||c=='>'||c=='('||c==')'||c=='['||c==']'||c==':'||c==';'||c==','||c=='"'||c=='.'||c=='!'||c=='#') return true; return false; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?