赋值运算符

#include<stdio.h>
void main()
{
int m;
m=2;
m+=m-=m*m;
printf("m=%d \n",m);
}

posted on 2019-12-15 21:48  张德明  阅读(148)  评论(0)    收藏  举报