java运算符

package com.gzxh.chapt02;

public class OPDemo {

	/**
	 * @content
	 * 运算符
	 * 		基本算数运算符:+ - * / % ++ --
	 * 	    赋值运算符:=(赋值)   ==(恒等于)!=(不等于) += -= *= %= /=
	 * 		逻辑运算符 :&& ||  !
	 * 		条件运算符
	 * 
	 * 
	 * 丢失精度   !非
	 */
	public static void main(String[] args) {
		// TODO 自动生成的方法存根
		int x = 100;  //创建变量并赋值
		int y = 67;   
		int sum;  //创建变量
		sum = x + y;
		System.out.println(sum);//167
		
		int z = y - x;
		System.out.println(z);//-33
		
		int c = x * y;
		System.out.println(c);//6700
		
		int chu = x / y;
		System.out.println(chu);//1
		
		int qu = x % y;
		System.out.println(qu);//33
		System.out.println("==========================");
		boolean flags;
		flags = (x==y);
		System.out.println(flags);//false
		System.out.println(x!=y);//true
		System.out.println("-----------------------");
//    	int a = 10,b = 20;
		System.out.println("==================");
		int s1 = x++;//先赋值、再自增
		System.out.println(x);
		System.out.println(s1);
		int s2 = ++x;//先自增,再赋值
		System.out.println(x);
		System.out.println(s2);
		int s3 = x--;
		System.out.println(x);
		System.out.println(s3);
		int s4 = --x;
		System.out.println(x);
		System.out.println(s4);
		
	}

}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值