#include int main(void){ int a,b,c; a = 5; b = 2; c = a + b; return 0;}精简点内部可以写成int a;a = 5 +2;因为不用stdio.h所以不能用输入输出