赋值表达式

来源:互联网 发布:网络电视内容提供商 编辑:程序博客网 时间:2024/06/05 06:19
public class java6_14 {/** * @param args */public static void main(String[] args) {// TODO Auto-generated method stubint x=12345679,y=81,z;z=x*y;System.out.println("z=x*y="+z);}}