#include <studio.h>int main(){int a,b,sum;a=1;b=1;sum=a+b;printf("sum is %\n",sum);return 0}
printf("sum is %\n",sum);修改为:printf("sum is %d\n",sum);