整数类的加减法

#include
int main()
{
int a,b,c;
a=1;
b=2;
c=a+b;    //或者c=b-a加减法都可
printf("小红一共有%d本书\n",c);
return 0;
}

你可能感兴趣的:(练习题,c++)