ch21.java

来自「java源程序,两个类之间的函数转换,实现相应功能」· Java 代码 · 共 34 行

JAVA
34
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package 阶段练习一;/** * * @author lenovo */public class Ch21 {     public static void main(String args[])      {       char x,y,z;       x='K';       y='\\';       z='\117';       System.out.print(x);       System.out.print(y);       System.out.print(z);      }}    /**     * @param args the command line arguments     */          // TODO code application logic here 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?