#include <stdio.h>
#define SOR(x) (x*x)
main()
{
int a,b=3;
a=SOR(b+2);
printf("%d",a);
}
转载于:https://www.cnblogs.com/zhangdongsheng/articles/1862040.html
#include <stdio.h>
#define SOR(x) (x*x)
main()
{
int a,b=3;
a=SOR(b+2);
printf("%d",a);
}
转载于:https://www.cnblogs.com/zhangdongsheng/articles/1862040.html