• 2021-04-14
    int one = 10 ; int two = 20 ; int three = 0 ; three=one+two; System.out.println("three = one + two ==> "+three); three+=one; System.out.println("three += one ==> "+three); three-=one; System.out.println("three -= one ==> "+three); three*=one; System.out.println("three *= one ==> "+three); three/=one; System.out.println("three /= one ==> "+three); three%=one; System.out.println("three %= one ==> "+three);
  • three = one + two ==>30
    three += one ==>40 three -= one ==>30 three *= one ==>300 three /= one ==>30 three %= one ==>0

    内容

    • 0

      Finish by putting your_(7)___ on your hips. One, two, three one, two,three. One, two, three one, two, three.

    • 1

      Finish by putting your_(7)___ on your hips. One, two, three one, two,three. One, two, three one, two, three.

    • 2

      以下对枚举类型名的定义中正确的是()。 A: enuma={one,two,three}; B: enuma{one=9,two=-1,three}; C: enuma={"one","two","three"}; D: enuma{"one","two","three"};

    • 3

      以下对枚举类型名的定义中正确的是____ A: A.enuma={one,two,three} B: B.enuma{one=9,two=-1,three} C: C.enuma={"one","two","three"} D: D.enuma{"one","two","three"}

    • 4

      以下对枚举类型名的定义中正确的是______。 A: enuma=one,two,three; B: enumaone=9,two=1,three; C: enuma="one","two","three"; D: enuma"one","two","three";