?? lesson.java~15~
字號:
/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class lesson { public static void main(String args[]) { int x = 5,f; float y=(float)x/2; f=x%-2; int a=2,b; b=++a; int w=98,z; z=(w+5)/6; System.out.println(z); System.out.println(b); System.out.println(a); System.out.println(y); System.out.println(f); /*x=0; while(true) { x=(x+1)%10; System.out.println(x); }*/ /* x+=1; if(!(x>3)) { System.out.println("x>3"); }*/ x=0x80000000; int s=0x800000000; x=x>>1; System.out.println(x); s=s>>>1; System.out.println(s); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -