java经典的源代码 我非常喜欢这个源代码 对于编程很有好处

源代码在线查看: condition.java

软件大小: 312 K
上传用户: xackw
关键词: java 源代码 编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				// condition.Java
				public class condition {
				   public static void main(String [] args) {
				      int a=3,b=8;     
				      int c = (a>b)?a++:b++;        // a不变
				      System.out.println ("a ="+a+ "\tb="+b+ "\tc="+c);
				      int d = (a>b)?++a:++b;        //a不变
				      System.out.println ("a ="+a+ "\tb="+b+ "\td="+d);
				      int e = (a				      System.out.println ("a ="+a+ "\tb="+b+ "\te="+e);
				      int f = (a				      System.out.println ("a ="+a+ "\tb="+b+ "\tf="+f);      
				   } 
				}// end class condition
							

相关资源