编辑代码

#include <stdio.h>
#define SQ(y) ((y)*(y))
main(){
 int i=1;
 while(i<=5)
 printf("%d\n",SQ(i++));
	return 0;
}
// SQ(int y)
// {
//  return((y)*(y));
//  }