已知变量a=1使用C语言计算a+=5表达式的值,帮帮忙,谢谢了
#include <stdio.h> int main() { int a = 1; a += 5; printf("%d",a); }
是6吧,a+=5的意思就是a=a+5