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

可以直接从输出上进行赋值运算啊?


我之前学C时,都是先进行赋值运算,再进行输出,可是在java上可以直接从输出部分写赋值。

提问者:肥宅乐 2016-07-17 11:21

个回答

  • 慕粉3401792
    2016-07-17 11:46:54
    已采纳

    c也可以的,printf("%d",(a=5));你可以试一下

  • 安鸣
    2016-07-17 11:54:54

    #include <stdio.h>
    int main() 
    {
    	int one = 10;
    	int two = 20;
    	int three = 0;
    	printf("three = one + two ==> %d\n", three=one+two);
    	printf("three += one ==> %d\n", three+=one);
    	printf("three -= one ==> %d\n", three-=one);
    	printf("three *= one ==> %d\n", three*=one);
    	printf("three /= one ==> %d\n", three/=one);
    	printf("three %= one ==> %d\n", three%=one);
    	return 0;
    }

    C也可以。