#include <stdio.h>
#define S(x) 4*(x)*x+1
main()
{ int k=5,j=2;
printf("%d/n",S(k+j));
}
程序运行后的输出结果是
A.)197
B.)143
C.)33
D.)28