问答详情
源自:3-3 Java中的赋值运算符

赋值运算符这个题没看懂啊 任务要求的是什么意思 是把任务程序打一遍吗

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two==>30;

        three+=one==>40;

        three-=one==>30;

        three*=one==>300;

        three/=one==>30;

        three%=one==>0;


提问者:慕用2047043 2017-06-03 16:00

个回答