项目作者: fefong

项目描述 :
Example Application: Operators
高级语言: Java
项目地址: git://github.com/fefong/java_operators.git
创建时间: 2019-09-21T19:49:10Z
项目社区:https://github.com/fefong/java_operators

开源协议:

下载


Java Operators

Example Application: Operators

Sum

  1. intValue = 0;
  2. intValue++;
  3. intValue = 0;
  4. intValue += 1;
  5. intValue = 0;
  6. intValue = intValue + 1;

output

  1. 1

Subtraction

  1. intValue = 1;
  2. intValue--;
  3. intValue = 1;
  4. intValue -= 1;
  5. intValue = 1;
  6. intValue = intValue - 1;

output

  1. 0

Multiplication

  1. intValue = 2;
  2. intValue *= 2;
  3. intValue = 2;
  4. intValue = intValue * 2;

output

  1. 4

Division

  1. intValue = 2;
  2. intValue /= 2;
  3. intValue = 2;
  4. intValue = intValue / 2;

output

  1. 1