有以下函数,当调用语句为long p = fun (3, 3);时,返回的p值
long fun (int x, int y) { int i; long p = 1; for (i = 0; i < y; i ++) p *= x; return p; }
3
9
27
71