我已经做到了这一点,我不知道如何进一步
#include<stdio.h>
int main()
{
int x,n,m,i;
printf("Enter the value of x: ");
scanf("%d",&x);
printf("\nEnter the value of n: ");
scanf("%d",&n);
for(i=0;i<n;i++)
m=m*x;
printf("x=%d;n=%d;m=%d",x,n,m);
while(m!=-1);
m=m*x;
i=i+1;
printf("enter the -1 to end");
scanf("%d",&m);
}
请你帮我写一个示例程序来显示 x power n 直到用户不想退出循环