C计算了一下

#include <stdio.h>

int main()
{
int a,b,c,e;
a=6 + 5 / 4 - 2;
b=2 + 2 * (2 * 2 - 2) % 2 / 3;
c=10 + 9 * ((8 + 7) % 6) + 5 * 4 % 3 * 2 + 3 ;
e=1 + 2 + (3 + 4) * ((5 * 6 % 7 / 8) - 9) * 10;
printf("%d,%d,%d,%d",a,b,c,e,);
return 0;

}

原文地址:https://www.cnblogs.com/ligouhai/p/9847621.html